Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     $('a.pSort').live('click',function(e) {
  2.       e.preventDefault();
  3.       sname = $(this).attr('id'); //it's not clear why you even want this value.
  4.    // how to toggle this
  5.       $(this).replaceWith($(this).text()+'<span class="sort-desc">&nbsp;</span>');
  6.     });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement