Guest User

Untitled

a guest
Jun 17th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. $('.listagem .listagem-item .info-produto > a').each(function(i) {
  2. var $this = $(this);
  3. var newClass = "nomep" + i++;
  4. $this.addClass(newClass);
  5. });
  6.  
  7. function firstnomep(){
  8. var str = $(".listagem .listagem-item .info-produto .nomep0").text();
  9. var res = str.slice(0,15);
  10.  
  11. $('<div id="name-prod">'+res+'</div>').insertBefore(".listagem .listagem-item .info-produto .nomep0");}
Add Comment
Please, Sign In to add comment