Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. <a href="/ThePage/25" data-transition="slidedown">Click Here 1</a><!--This is working-->
  2.  
  3. <a href="/ThePage/25#3" data-transition="slidedown">Click Here 2</a><!--This is not working-->
  4. <a href="/ThePage/25/#3" data-transition="slidedown">Click Here 3</a><!--This is not working-->
  5.  
  6. <a class='homeSet'>Home</a>
  7.  
  8. $('body').on('click', '.homeSet', function(ev) {
  9. $.mobile.changePage('/home.html#myhome', {
  10. transition : "slide"
  11. });
  12. return false;
  13. });
  14.  
  15. <a href="/ThePage/25#3" rel="external" data-transition="slidedown">Click Here 2</a><!--This is not working-->
  16. <a href="/ThePage/25/#3" rel="external" data-transition="slidedown">Click Here 3</a>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement