Guest User

Untitled

a guest
Jun 17th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (function($) {  
  2.     $.fn.ordenarTabela = function(col) {
  3.         $(this).append(
  4.             $(this).find('tr').sort(function(a,b){
  5.                 return $(a).find('td:nth-child('+ col +')').text().toLowerCase() > $(b).find('td:nth-child('+ col +')').text().toLowerCase() ? 1 : -1 ;
  6.             })
  7.         );
  8.         return this;
  9.     }  
  10. })(jQuery);
Add Comment
Please, Sign In to add comment