Category Archive for: "Tips and Tricks"

  1. 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.

  2. 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.

  3. jQuery

    jQuery :last Selector Examples

    Using jQuery, it is very easy to select the last matched element. It can be done by using the jQuery last selector. In this article, I am going to share different examples on how to use the :last selector in jQuery.

  4. jQuery

    jQuery :first Selector Examples

    Selecting the first matched element is very easy and it can be done by using a selector in jQuery. In this article, I am going to share different examples on how to use the :first selector in jQuery.

  5. jQuery

    jQuery :odd() Selector Examples

    It is easy to target elements that have an odd index and it can be done using the jQuery odd selector. In this article, I am going to share easy examples that show how to use the .odd() selector to highlight divs, list items, table cells, etc. Read on to find out more.

  6. jQuery

    jQuery :even() Selector Examples

    If you wish to target the elements that have an even index, it is possible to do so by using the jQuery even selector. In this article, I am going to share easy examples that show how to highlight divs, list items, table cells, etc. using the :even() selector. Read on to find out more.

  7. jQuery

    jQuery Select Div Examples

    Have you ever wondered of how many different possibilities exist when it comes to dealing with divs? In this article, I am going to share different ways of selecting divs by means of easy examples. You will see how to select first div, parent div, last div, div with class, child div, previous div, div […]

  8. jQuery

    jquery :not() Selector Examples

    The jQuery not selector performs the opposite of what we generally to do find out if an element contains a specific value. In other words, it selects all elements that do not match the given selector. That said, let’s take a look at how to use it in real time by means of easy examples.

  9. jQuery

    jQuery :eq() Selector Examples

    Ever wanted to select an element using a specific index number but wondered how to do it? If yes, then the jQuery eq selector is right for you. In this article, I am going to share easy examples that show how to use the :eq() selector in real time.