jQuery Tutorial
Tue Feb 08 2022 12:28:58 GMT+0000 (UTC)
Saved by
@Arjun007
#html
#css
#javascript
#java
#python
#jquery
<!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
jQuery is a fast and light-weight feature-rich JavaScript library. it was created by John Resig in early 2006. jQuery simplifies AJAX calls, JavaScript and HTML Document traversing. Before learning jQuery,
https://elementtutorials.com/jquery/jquery-tutorial.html
Comments