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> </head> <body> <h1>jQuery noConflict() Method</h1> <button>Click</button> <script> jQuery(document).ready(function(){ jQuery("button").click(function(){ alert("jQuery executed"); }); }); </script> </body> </html>
OUTPUT
×

Save as Private