May 14, 2020

jQuery Notes for Professionals

jQuery Notes for Professionals

jQuery Notes for Professionals
This jQuery® Notes for Professionals book is compiled from Stack Overflow
Documentation, the content is written by the beautiful people at Stack Overflow.
Text content is released under Creative Commons BY-SA, see credits at the end
of this book whom contributed to the various chapters. Images may be copyright
of their respective owners unless otherwise specified
This is an unofficial free book created for educational purposes and is not
affiliated with official jQuery® group(s) or company(s) nor Stack Overflow. All
trademarks and registered trademarks are the property of their respective
company owners
The information presented in this book is not guaranteed to be correct nor
accurate, use at your own risk
Please send feedback and corrections to web@petercv.com
Section 1.1: Getting Started
Create a file hello.html with the following content:
<!DOCTYPE html>
<html>
<head>

<title>Hello, World!</title>
</head>
<body>

<div>

<p id="hello">Some random text</p>

</div>

<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>

<script>
 $(document).ready(function() {
 $('#hello').text('Hello, World!');
 });

</script>
</body>
</html>
Download e Book to read more


Previous Post
Next Post
Related Posts

0 Comments: