简体   繁体   中英

Write a function inside jquery .html()

I am running a bg slider..."Supersized - Fullscreen Slideshow jQuery Plugin"

what i need is when a background changes some contents in a specific div must also change...

here i found a code line from script

if (options.slide_captions) 
   $('#slidecaption').html(options.slides[currentSlide].title);

this one pulls the image title to a specific div, but i want to load unique div for each background change...

or is there any other ways to do??

i have very little knowledge in jquery... please help

advance thanks...

you can write this:

if (options.slide_captions) $('#slidecaption').html(options.slides[currentSlide].title, function(){
//write the code that load the unique div

});

tell me if it works

http://buildinternet.com/project/supersized/docs.html#theme-after

Check-out the theme.afterAnimation( ) documentation. You can set it to a function that changes the content after the slide changes.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM