Reputation: 809
I need to stop prevent default behavior of radio button to check if it checked before I click it or not, I'm using .live('click', function (){})
because the HTML added to DOM with AJAX
Upvotes: 2
Views: 7139
Reputation: 69915
Just return false
.live('click', function (){
return false;
})
Upvotes: 2