let's say that I using this code and I want to change it after an ajax call (change fx for example).
$(document).ready(function() {
$('.slideshow').cycle({
fx: 'fade' ,
timeout: 1500
});
}}
is it possible ?
thanks
|
let's say that I using this code and I want to change it after an ajax call (change fx for example).
is it possible ? thanks |
|||
|
If the
This will then be executed after the AJAX call, independent of the outcome. If you only want it to execute after a successful AJAX call, use
|
|||
|
|
cycleisn't core jQuery), it's best to link to the site for the plug-in. In this case, you'll want to look at the plug-in's documentation to see if there's a way to change the options it's using while it's running (or a way to stop it, then start again). – T.J. Crowder Oct 17 '12 at 12:15