jQuery Cycle Plugin Question
jQuery Cycle Plugin Question
Out of context: Reply #13
- Started
- Last post
- 13 Responses
- Boz0
you can also use Jquery's class manipulation things like:
hasClass() to determine if your class is definied for a specific element..
you can also use $('element').css('cssproperty', 'value');
or you can simply just removeClass() and then addClass()
- .css() will allow you to directly change the css properties without changing the actual class.Boz