HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <body> <h1>jQuery fadeIn() Method</h1> <p>Click on the button</p> <button id="myFadeOut">Fade Out</button> <button id="myFadeIn">Fade In</button> <script> $(document).ready(function(){ $("#myFadeOut").click(function(){ $("p").fadeOut(); }); $("#myFadeIn").click(function(){ $("p").fadeIn(); }); }); </script> </body> </html>
OUTPUT
×

Save as Private