Advertisement
Guest User

Untitled

a guest
Dec 6th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. $('.target').on('click', function(){});
  2.  
  3. $(function(){
  4. window.setTimeout(function(){
  5. $('.target').on('click', function(){});
  6. }, 2000); //Aqui você regula um tempo seguro em que o botão já estará carregado
  7. });
  8.  
  9. $.ajax({
  10. url: "...",
  11. success: function(data){
  12. //...
  13. //após inserir seu código, você atrela o evento
  14. $('.target').on('click', function(){});
  15. }
  16. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement