Jquery Plugins Hub
how to get the ISO week of year using javascript
If January 1st is Monday, Tuesday, Wednesday, Thursday, It's belong to first ISO weekElse if it's Friday, Saturday, Sunday ,then it belong to the week of last year.if (!Arr
Views:0 December 23, 2018, 8:31 pm
how to refresh the page after a few seconds
This tutorial explains how to refresh the page after a few seconds each time (certain interval time).Sometime we need to redirect the page to another one after 3 seconds.So we need to refresh the page
Views:0 March 23, 2019, 11:31 am
How to check if a string contains a substring in JavaScript
This tutorial explains how to check if string contains substring using js. this is a common task in work.There are many ways to do this operation. Usually, I would like to use String.indexOf() method.
Views:0 March 23, 2019, 3:08 pm
js common verify rule using regular expressions cheatsheet
When we design a form, the data must be verifyed before the user submit. Regular expressions can help us to do this task and impove the customer experience.Here is a list of most used rules in a valid
Views:0 March 23, 2019, 4:00 pm
20+ Popular and Useful Web Page Typography Libraries and Frameworks
Modern website typography is more and more complex and demands are changed any time.Especially website for mobile is more and more popular, web designer has to deal with all different oc
Views:0 March 24, 2019, 2:57 pm
How to convert js array of JSON object strings to array of JS objects
This tutorial explains how to json object string to js object array.If it's JS array of JSON object strings,we use String.map method to iterate the object string,and use JSON.parse to parse this j
Views:0 April 1, 2019, 12:34 am
jQuery document ready function
jQuery document readyBefore having jquery,If we want to run code when DOM loading is complete.We always use windows.load method:window.load=function(){ //Wri
Views:0 April 2, 2019, 12:40 am
jQuery addClass removeClass hasClass toggleClass
jQuery addClass , removeClass, hasClass,toggleClassIn this tutorial, we will explains how to manage the classes of DOM element.Assume we have an element:<div id="foo" class=&quo
Views:0 April 2, 2019, 1:54 am
jQuery Selector
jQuery SelectorIn this tutorial, we will tall about the selector which is the most important parts in the jQuery library.What we do most in jQuery is selecting the DOM elements and manipulate them.The
Views:0 April 2, 2019, 5:58 pm
jQuery fadeIn fadeOut fadeTo fadeToggle
jQuery fadeIn, fadeOut, fadeTo,fadeTogglejQuery provides 4 methods to implement transparency effect in HTML.MethodDescriptionfadeInDisplay the matched elements by fading them to opaque.fadeOutHide the
Views:0 April 2, 2019, 8:02 pm
jQuery add new element and html
jQuery add new element and htmljQuery add() method will create a new jQuery object with elements added to the matched elements.jQuery add()jQuery add() method is very useful if you want to add new htm
Views:0 April 2, 2019, 8:46 pm
jQuery noConflict
jQuery noConflict()In jQuery $ is used as an alias(shortcut) for jQuery. Other javascript libraries might also use $ variableThe method noConflict () is used to resolves multiple jQuery version or ano
Views:0 April 2, 2019, 9:16 pm
jQuery Sliding Effects
jQuery Sliding EffectsjQuery has 3 useful sliding effects .slideDown(),.slideToggle() and .slideUp() methods.They will show or hide the DOM elements with sliding effect.jQuery slide Descriptionmethodd
Views:0 April 2, 2019, 10:37 pm
jQuery Ajax Event Handlers
jQuery Global Ajax Event HandlersAjax short for asynchronous javascript and XML,is a set of web development techniques which update a web page without reloading the page. It's very important for w
Views:0 April 3, 2019, 12:25 am
jQuery AJAX Shorthand Methods
jQuery AJAX Shorthand MethodsIn ajax, get and post are two common submission methods. Formats json is often used.So jQuery encapsulates them further to make them easier to use.jQuery AJAX Shorthand Me
Views:0 April 3, 2019, 12:47 am