Get started with jqplugin CDN
MIT licensed
JQuery plugin: Manipulate JSON data with jq.
Tags:- flash
- java
- quicktime
- realplayer
- silverlight
- shockwave
Stable version
Copied!
How to start using jqplugin CDN
<!DOCTYPE html>
<html>
<head>
<title>Get started with jqplugin CDN - cdnhub.io</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://cdn.cdnhub.io/jqplugin/1.0.2/jquery.jqplugin.min.js"></script>
<style>
#autocomplete {
width: 300px;
}
</style>
</head>
<body>
<div>
<label for="autocomplete">Autocomplete:</label>
<input type="text" id="autocomplete">
</div>
<script>
$(document).ready(function() {
$('#autocomplete').jqPlugin({
source: ['Apple', 'Banana', 'Cherry', 'Date', 'Elderberry'],
minLength: 1,
autoFill: true,
width: 300
});
});
</script>
</body>
</html>
Copied!