How to disable prettyPhoto?

拟墨画扇 提交于 2019-12-21 17:53:24

问题


I now how to enable prettyphoto, but the problem is how to disable?

Here i enable prettyPhoto

$(document).ready(function(){ $("a[rel^='prettyPhoto']").prettyPhoto({ social_tools:false, }); }); 

How to disable?


回答1:


    $("a[rel^='prettyPhoto']").unbind('click');
    $("a[rel^='prettyPhoto']").attr('rel', '');

Just unbind click and rel attribute.




回答2:


Sadly the prettyPhoto does not seem to have a "turnOff" option. If you are not using any other click event handlers for those links, @Yenne Info 's answer is just fine.

If you don't want to unbind all click event handlers:

Looking through the prettyPhoto code - at the end of method definition, you can find something like:

return this.unbind('click.prettyphoto').bind('click.prettyphoto',$.prettyPhoto.initialize);

So the proper unbind without losing other click-related event handlers would be (generally for all links):

jQuery('a').unbind('click.prettyphoto');

For your specific selector:

$("a[rel^='prettyPhoto']").unbind('click.prettyphoto');


来源:https://stackoverflow.com/questions/19311979/how-to-disable-prettyphoto

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!