ryrych / rcarousel

yet another jQuery UI carousel
http://ryrych.github.com/rcarousel/
172 stars 48 forks source link

Ability to change page DOM #66

Open NotionCommotion opened 11 years ago

NotionCommotion commented 11 years ago

I would like to be able to make changes to the current page's HTML, and then make those changes permanent by change a given carousel page's DOM. Attached is how I did it. If an update is ever made to this plugin, please add this method. PS. Thanks for a great plugin.

updatePageDOM: function() { var $root = $(this.element), data=$root.data("data"); //Note that data.paths[data.pageIndex] and data.pages[data.pageIndex][0] is the same data.paths[data.pageIndex].html($root.find('div.slide').html()); },