Hi,
I need to avoid multiple submission in CButtonColumn’
options’ => array(
‘class’=> ‘buttonhide’,
),
i added jquery in css folder
$(document).ready( function() {
$(".buttonhide").click(function(event){
$(this).parent().html('');
e.preventDefault();
});
});
This is working in firefox perfectly but not in other browswer