jquery click this not working more than ocne code example
Example 1: jquery click not working
$(document).ready(function() {
$("#clicker").click(function () {
alert("Hello!");
$(".hide_div").hide();
});
});
Example 2: i get two times event click of button javascript
$(".bet").unbind().click(function() {
//Stuff
});