Skip to content

jQuery.basicTicker is a real simple ticker, without any bells or whistles

License

Notifications You must be signed in to change notification settings

itechnology/basicTicker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

What you get

  • A really simple ticker
  • Customize & extend what you like yourself

Try it

Signature

jQuery(selector).basicTicker(array items, int duration, function callBack) returns jQuery Object

Sample Usages

jQuery("#basicTicker").basicTicker(["Some text 1", "Some text 2", "Some text 3"], 2000, function(ele) {
    alert("All done");
});

Subscribe to EvenHandler

Instead of using the callBack as shown above, you can also subscribe to the eventHandler

jQuery("#basicTicker").basicTicker(["Some text 1", "Some text 2", "Some text 3"], 2000);
jQuery("#basicTicker").bind("ticker:done", function(e) {
    alert("All done");
});

About

jQuery.basicTicker is a real simple ticker, without any bells or whistles

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published