Jquery Tutorial

PHOTO EMBED

Wed Feb 09 2022 07:11:45 GMT+0000 (Coordinated Universal Time)

Saved by @Arjun007 #jquery #css #html #javascript #java #python

<!DOCTYPE html>  
<html>  
<head>  
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js">  
 </script>  
 <script type="text/javascript" language="javascript">  
 $(document).ready(function() {  
 $("h1").css("color", "red");  
 });  
 </script>  
 </head>  
<body>  
<h1>This is first paragraph.</h1>  
<p>This is second paragraph.</p>  
<p>This is third paragraph.</p>  
</body>  
</html>  

 
content_copyCOPY

https://elementtutorials.com/codeeditor/jquery-welcome.html