jquery-getjs is a jquery-based library that allows you to capture GET parameters through a browser URL.
jquery ajax get request, jquery ajax get json example, jquery get json from url, ajax get json from url, how to get json data from url in html, jquery ajax get example
How to make use of it:
1. Download and import the jquery-getjs.js plugin.
<script src="/path/to/cdn/jquery.slim.min.js"></script> <script src="/path/to/build/jquery-getjs.js"></script>
2. Get the worth of the given parameter from the present web page URL.
const myValue = $.getjs("site");
// returns myValue = "WCF"
3. Execute a callback if the parameter exists.
$.getjs("site", function(value) { alert("Your site is "+value); }
4. Execute a callback if no matched parameter exists.
$.getjs("surname", function(value) { alert("Your surname is "+value); }, function() { alert("You need to provide a surname"); });
Get URL Parameter Values With jQuery, jquery-getjs Plugin/Github, getjson example with parameters, getjson not working
See Demo And Download
Official Website(amprogramacion): Click Here
This superior jQuery/javascript plugin is developed by amprogramacion. For extra advanced usage, please go to the official website.