Consider a scenario. I have to select multiple categories and submit to database. The orthodox method is to provide checkboxes. But we can have a colorful method by using the following steps:
• Create an ordered list with inline-block display style
• Using jQUery UI, make it as “Selectable” widget.
Now I can see all items in a better visualization and select (multiple) required items before submit.
$("#myOrderedListSelecatableAsHeaderPart").selectable();
Refer: jQuery Selectable Customization
In effect, it becomes a new control. Similarly, what are the other changes brought in by utilizing jQuery features?