You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For various reason, you may want to disable the slideshow - for a particular screen width, old browser etc.
Create a method to disable slideshow: example code:
slideshow = null;
var $el = $("#slideshow");
$el.unbind();
$el.removeClass("ui-slideshow");
$el.find(".slide").removeClass("ui-slideshow-slide");
// remove inline styles
$el.find(".wrapper").removeAttr("style");
$el.find(".slide").removeAttr("style");
The text was updated successfully, but these errors were encountered:
For various reason, you may want to disable the slideshow - for a particular screen width, old browser etc.$el = $ ("#slideshow");
Create a method to disable slideshow: example code:
slideshow = null;
var
$el.unbind();
$el.removeClass("ui-slideshow");
$el.find(".slide").removeClass("ui-slideshow-slide");
// remove inline styles
$el.find(".wrapper").removeAttr("style");
$el.find(".slide").removeAttr("style");
The text was updated successfully, but these errors were encountered: