Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following code on my script file:

$(document).ready(function(){
   $("#cancel_button").click(function(){
      alert("TEST");
   });
});

And in my site i have this:

<form id="edit_news_form" method="post">
    <input type="hidden" name="news_id" value="30">
    <input type="text" name="title" placeholder="Título" value="TEXT" size="80"><br>
    <textarea name="text" placeholder="Texto" rows="20" cols="58">TEXT</textarea><br>
    <input type="text" placeholder="Tags" value="Tag1" name="tags" size="80"><br>
    <input id="edit_button" type="submit" value="Edit">
    <input id="cancel_button" type="button" value="Cancel">
</form>

Why i cant select the button and receive the alert?

-------------EDITED ------------

The problem is that i'm insert the html code dynamically with jquery...So i forget this detail.. for this work is necessary use:

$('#cancel_button').live('click', function);

Thank u all

share|improve this question
2  
Did you include the jQuery library? Did you include the script file? Your code looks fine. – Vega Nov 29 '12 at 19:04
your code looks fine – NullPoiиteя Nov 29 '12 at 19:05
2  
Also when you say select the button you actually clicked the button right? – Vega Nov 29 '12 at 19:06
2  
Agree with Vega and NullPointer. Your code works fine. See this fiddle - jsfiddle.net/U37pA – legendofawesomeness Nov 29 '12 at 19:06
The problem is that i'm insert the html code dynamically with jquery...So i forget this detail.. for this work is necessary use: $('#cancel_button').live('click', function);.....Thank u all – user1394983 Nov 29 '12 at 19:42

closed as too localized by Sparky, bpeterson76, JK., Tim Post Nov 30 '12 at 12:00

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

jQuery live method is deprecated since v1.7. Also behind the scene all the events like- live, click etc.. are calling the on method

so use this instead:

$(document).on('click', '#cancel_button', function () {
     // do some work
});

this will work whether your html is loaded dynamically or not

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.