These are features coming soon to AAPL. They are not possible without custom coding the .js file at this time.
Thanks for reply.Can you help me with pretty photo? its not working.i need to refresh page then it works i have added reload code.
jQuery(document).ready(function () {
jQuery(“.gallery1 a”).attr(“rel”,”gallery1″);
jQuery(‘a[rel=”gallery1″]’).colorbox({title: function(){ return jQuery(this).children().attr(“alt”); }});
jQuery(“.wine:first a[rel^=’prettyPhoto’]”).prettyPhoto({animation_speed:’normal’,theme:’facebook’,slideshow:3000, autoplay_slideshow: false,social_tools: false});
jQuery(“.wine:gt(0) a[rel^=’prettyPhoto’]”).prettyPhoto({animation_speed:’normal’,theme:’facebook’,slideshow:3000, autoplay_slideshow: false,social_tools: false});
});
Hey VSHALL,
you do not need the .ready part as the reload function is handled for you when necessary, so just try:
jQuery(".gallery1 a").attr("rel","gallery1");
jQuery('a[rel="gallery1"]').colorbox({title: function(){ return jQuery(this).children().attr("alt"); }});
jQuery(".wine:first a[rel^='prettyPhoto']").prettyPhoto({animation_speed:'normal',theme:'facebook',slideshow:3000, autoplay_slideshow: false,social_tools: false});
jQuery(".wine:gt(0) a[rel^='prettyPhoto']").prettyPhoto({animation_speed:'normal',theme:'facebook',slideshow:3000, autoplay_slideshow: false,social_tools: false});