if i click one time but two functions will call how possible using javascript code example
Example: i get two times event click of button javascript
$(".bet").unbind().click(function() {
//Stuff
});
$(".bet").unbind().click(function() {
//Stuff
});