facebook - Some js file and social media plugin did not load when changing pages using jQuery Mobile Sliding Panel -
i using jquery mobile's panel feature navigate between pages. of pages have jssor plugin , social media plugins facebook , twitter. plug ins not work through panel item when selected.
this current page: http://191armyband.com/contact.html
i clicked menu , go home page, home page should load twitter feeds, facebook plug in , jssor plugin. these not work if navigate here panel.
i assuming if turn off ajax feature jquery mobile, might make work...
$.mobile.ajaxenabled = false;
is correct code use? how should integrate in code?
here code of current page: http://jsfiddle.net/humorean/n7x4mv9k/
try put stop ajax script right before jquery mobile js:
<script type="text/javascript"> $(document).bind("mobileinit", function () { $.mobile.ajaxenabled = false; }); </script> <script src="js/jquery.mobile-1.4.5.min.js"></script>
put script in landing pages pages work plugins.
Comments
Post a Comment