Issue
I want to make a div visible on button click,and I also need to hide the clicked button when the div appears.
Solution
You can use this code,
$('#your_button_id').on('click',function(){
$('#your_div_id').show();
$(this).hide();
});
Answered By - Abhilash Ravindran C K
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.