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