Latest Articles

  1. jQuery

    jquery .clone() Method Examples

    jQuery clone method is an easy way to duplicate elements on a page. It performs a deep copy of the set of matched elements. In other words, it copies the matched elements as well as all of their descendant elements and text nodes to duplicate the elements. In this article, I am going to share easy examples […]

  2. Articles

    How To Increase Page Rank In Search Engines Including Google

    Have you been wondering how to increase Page Rank of your website so that it appears higher and ranks better in search engines? Do you know what a Page Rank actually is and how you can increase it to increase your website visibility and drive more traffic via the search engines to your website? In […]

  3. jQuery

    jQuery :visible Selector Examples

    If you wish to check whether an element in a web page is visible or hidden, you can easily achieve it using the jQuery visible selector. In this article, I am going to share easy examples that show how to use the visible selector in making a div visible / hidden, check if element is visible […]

  4. jQuery

    jQuery .prependTo() Method Examples

    jQuery prependTo method is a very easy to use, if you want to insert content, text or html or both, into another element, before the content of the target element. By using it, you can easily add content, dynamic or static. In this article, I am going to share easy examples on using the prependTo() […]

  5. jQuery

    jQuery .prepend() Method Examples

    If you ever wanted to Insert content (text or html or both), specified by the parameter, to the beginning of each element in the set of matched elements, then using the jQuery prepend method is an excellent option. In this article, I am going to share easy examples on how to use the .prepend() method.

  6. jQuery

    jQuery onClick Event Examples

    Wondering how to use the jQuery onclick event? Do you wish to execute some custom code on click of a button, a hyperlink, etc.? If yes, then this article is for you. In this article, I am going to share easy examples that show how to trigger an action when an element on a web page […]

  7. Featured

    jQuery Cheat Sheet With Examples & Demos

    Here is the compiled Cheat Sheet of the different Selectors, Attributes, Manipulation, Traversing, Events and Effects available in jQuery. The aim of this cheat sheet is not just to provide with the list, but also to provide easy examples for your better understanding. In addition to this, you can simply try the Demo associated with each […]

  8. jQuery

    jQuery .toggleClass() Method Examples

    When dealing with classes in jQuery, it might be desirable to shorten the amount of code used to add class to an element or remove class from an element (Div, Image, Textbox, etc.). This can be easily achieved by using the toggleClass method. In this article, I am going to share very easy ways to […]

  9. jQuery

    jQuery .closest() Method Examples

    If you are wondering how to find the closest element of an existing element in a web page, then the jQuery closest method is the way to go. In this article, I am going to share easy examples that show how to use it.