Guest User

Untitled

a guest
Jan 22nd, 2018
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. // Add mobile skip to external links
  2. $('.page').live('pageAnimationStart', function(){
  3. $("a[target='_blank']").each(function() {
  4. if (!$(this).attr('href').match(/slideshow/) and !$(this).attr('href').match(/mobile=skip/)) {
  5. // Link with params
  6. if ($(this).attr('href').match(/\?/)) {
  7. $(this).attr('href', $(this).attr('href') + "&mobile=skip");
  8. // Link with no params
  9. } else {
  10. $(this).attr('href', $(this).attr('href') + "?mobile=skip");
  11. }
  12. }
  13. });
  14. });
Add Comment
Please, Sign In to add comment