Advertisement
Guest User

Untitled

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