Skip to content

Instantly share code, notes, and snippets.

@ssrlive
Created September 22, 2020 06:52
Show Gist options
  • Save ssrlive/c75338484145d8803de80eaf94237b1e to your computer and use it in GitHub Desktop.
Save ssrlive/c75338484145d8803de80eaf94237b1e to your computer and use it in GitHub Desktop.
jQuery usage
<!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