要素のクリックイベントを有効/無効にしたい。次のコードがあります...
HTML:
<a id="CP" style="cursor: pointer; text-decoration: underline;">Current Processes</a>
jQuery:
$(document).on("click", "#CP", function(event) {
$this = $(this);
$this.click(function() {
return false;
});
$this.html("Processing...").css({
"text-decoration": "none",
"cursor": "default"
});
$.ajax({
type: 'post',
url: 'abc.jsp',
success: function(process) {
//My code goes here...
$this.on("click"); // Here i want to bind or add handler which is fired previously.
}
});
});