Created
September 22, 2020 06:52
-
-
Save ssrlive/c75338484145d8803de80eaf94237b1e to your computer and use it in GitHub Desktop.
jQuery usage
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<head> | |
<title>jquery tutorial</title> | |
<script src="https://cdn.staticfile.org/jquery/3.5.1/jquery.min.js"></script> | |
<link rel="stylesheet" href="https://cdn.staticfile.org/jqueryui/1.12.1/themes/base/jquery-ui.css"/> | |
<script src="https://cdn.staticfile.org/jqueryui/1.12.1/jquery-ui.min.js"></script> | |
</head> | |
<body> | |
<h1>just a test for jquery</h1> | |
<p>by good man === </p> | |
<p>by good man</p> | |
<input id="date" type="text" size="10"> | |
<script> | |
$(function(){ | |
$("#date").datepicker(); | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment