A javascript utility library providing helper functions to aid faster and efficient js development
Sample usage: Step 1: Include the jsUtils library in your html
<script type="text/javascript" src="jsUtils-min.js"></script>"
Step2: Use the api using the j$ helper followed by the api component:
j$.string.capitalize("apurav");
OR use the shorthand :
j$.su.contains("apurav chauhan","apurav");
And similarly for date utility methods:
j$.date.set(new Date(),{'date':23,'month':8,'year':2014});
OR using the shorthand component:
j$.du.format(new Date(),"dd/MM/yyyy");
Full API Docs comming soon...