Demo of Accordion icons option

About JQuery

JQuery is a library of JavaScript functions. This is used to generate many front end functionality without writing all the codes. We can just include these libraries to use different widgets, functions and much more to develop an interactive web page.

How to Use

To include these JQuery libraries , either we can download the JavaScript files or we can directly link them from some hosted servers where these files are kept.

Advantage of JQuery

We can show animations, connect to backend script, show calendars to select date, show progress bar and develop many interactive script for better user experience. We can do all these by writing few lines of code by using these libraries.





System Requirement

JQuery runs at client end browser so any browser with script execution enabled can run JQuery.


JQuery

<script>
$(document).ready(function() {
//////////////////////////
$( '#accordion' ).accordion({
icons: { "header": "ui-icon-plus", "activeHeader": "ui-icon-minus" }
});
////////////////
})
</script>