Answers for "jquery fade in fade out on click"

5

on click fade out jquery

$(document).ready(function(){
  $("button").click(function(){
    $("p").fadeOut(2500);
  });
});
Posted by: Guest on February-05-2020
1

jquery on click fade out element

$(document).ready(function(){
  $("button").click(function(){
    $("p").fadeOut();
  });
});
Posted by: Guest on June-02-2020
1

jquery fadeout and remove

<a onclick='$("#notification").fadeOut(300, function() { $(this).remove(); });' class="notificationClose "><img src="close.png"/></a>
Posted by: Guest on August-01-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language