Tag Archive for: "jquery-tips"

  1. Featured

    Free Cron Generator To Generate Cron Job Syntax Online

    Have you ever wanted to be able to generate Cron Job Syntax easily without having to worry about tackling the technical part of writing the syntax? If yes, then you are a going to love this article. I am pleased to announce the release of a new product of Extreme Web Design’s Labs, called the […]

  2. Featured

    PHP / UNIX Timestamp Generator and Converter

    If you are a Web Developer, then at one point of the time you may have come across UNIX Timestamps. If yes, then you know that a timestamp by itself, doesn’t tell you much about the date it represents until and unless it is converted into human readable format. At the same time, if you […]

  3. Featured

    Free Online MySQL Query Generator

    Are you a Web Developer wanting to increase your productivity and cut down on the development time? Do you wish to make your web development process error-free & finish your work in the shortest possible time? If yes, then here is a great tool for you. It’s called: “MySQL Generator“.  In this article, I am going […]

  4. jQuery

    jQuery :parent Selector Examples

    The jQuery parent selector basically select all elements that that have at least one child node. This child node could be either an element or text. That said, we will see how to use the :parent selector by means of easy to follow examples. Read on to find out more.

  5. jQuery

    jQuery :has() Selector Examples

    The jQuery has selector basically selects elements which contain at least one element that matches the specified selector. So this means that for any occurrence of a target within the source, the target is considered to be found. Confusing? Don’t worry. In this article, I am going to share easy examples that show you how to use the […]

  6. jQuery

    jQuery :root Selector Examples

    The jQuery root selector basically selects the element that is the root of the document. So in this article, I am going to share examples on how to use it in real time. Read on to find out more.

  7. jQuery

    jQuery :header Selector Examples

    The jQuery header selector is used to selects all elements that are headers. This means that you will be able to easily target the heading tags such as h1, h2, h3, h4, h5 and h6. In this article, I am going to share easy examples of using the :header selector.

  8. jQuery

    jQuery :lt() Selector Examples

    Using jQuery, it is very easy to select all elements at an index lesser than index within the matched set. It can be done by using the jQuery lt selector. In this article, I am going to share different examples on how to use the :lt selector in jQuery.

  9. jQuery

    jQuery :gt() Selector Examples

    Using jQuery, it is very easy to select all elements at an index greater than index within the matched set. It can be done by using the :gt() selector. In this article, I am going to share different examples on how to use the :gt() selector in jQuery.