Advertisement
Guest User

Untitled

a guest
Feb 28th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. div = $('#container_principal_box_pesquisa');
  2.  
  3. contador =1;
  4.  
  5. for(i=0; i<data.length; i++){
  6. if(i < 5){
  7. div.append('<div id="box_pesquisa_'+contador+'">'+data[i]+'</div>');
  8. id = $('#box_pesquisa_'+contador);
  9. div.find('img').width(60);
  10. div.find('img').height(60);
  11. contador++;
  12. }
  13. }
  14.  
  15.  
  16.  
  17. box1 = $("#box_pesquisa_1");
  18. box2 = $("#box_pesquisa_2");
  19. box3 = $("#box_pesquisa_3");
  20. box4 = $("#box_pesquisa_4");
  21. box5 = $("#box_pesquisa_5");
  22.  
  23. box1.click(function(){
  24. alert('teste');
  25. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement