Front-end Tutorials

Front-end Tutorials

HTMLCSSSassJavaScriptReactJS
CMS Tutorials

CMS Tutorials

WordPress
Tutorials expand

jQuery Basic

jQuery Ajax Events

jQuery Ajax Methods

jQuery Keyboard Events

jQuery Keyboard Methods

jQuery Form Events

jQuery Form Methods

jQuery Mouse Event

jQuery Mouse Methods

jQuery Event Object

jQuery Fading

jQuery Document Loading

jQuery Traversing

jQuery Utilities

jQuery Property

jQuery HTML

jQuery CSS

jQuery Miscellaneous

jQuery .first() Method

Posted in jQuery Tutorial
Updated on May 11, 2024
By Mari Selvan
👁️ 17 - Views
⏳ 4 mins
💬 0
jQuery .first() Method

Photo Credit to CodeToFun

🙋 Introduction

jQuery is renowned for its simplicity and efficiency in web development. Among its arsenal of methods, the .first() method stands out as a handy tool for selecting the first element(s) in a jQuery object. Understanding how to effectively utilize .first() can streamline your code and enhance your ability to manipulate DOM elements.

In this guide, we'll explore the intricacies of the jQuery .first() method through clear examples, enabling you to harness its power in your web projects.

🧠 Understanding .first() Method

The .first() method allows you to retrieve the first element(s) from a jQuery object. It's particularly useful when you need to target specific elements within a set of matched elements.

💡 Syntax

The syntax for the .first() method is straightforward:

syntax.js
Copied
Copy To Clipboard
$(selector).first()

📝 Example

  1. Selecting the First Element:

    Suppose you have a list of elements and you want to select the first one. You can achieve this using the .first() method as follows:

    index.html
    Copied
    Copy To Clipboard
    <ul>
      <li>Item 1</li>
      <li>Item 2</li>
      <li>Item 3</li>
    </ul>
    example.js
    Copied
    Copy To Clipboard
    $("li").first().css("color", "red");

    This will set the text color of the first <li> element to red.

  2. Chaining .first() with Other Methods:

    You can chain the .first() method with other jQuery methods to perform more complex operations. For example, let's hide the first paragraph of a div:

    index.html
    Copied
    Copy To Clipboard
    <div>
      <p>First paragraph</p>
      <p>Second paragraph</p>
      <p>Third paragraph</p>
    </div>
    example.js
    Copied
    Copy To Clipboard
    $("div").find("p").first().hide();

    This will hide the first paragraph within the div.

  3. Filtering Elements Before Using .first():

    You can also combine .first() with filtering methods to select the first element(s) based on specific criteria. For instance, let's select the first visible button in a container:

    index.html
    Copied
    Copy To Clipboard
    <div id="container">
      <button style="display:none;">Button 1</button>
      <button>Button 2</button>
      <button>Button 3</button>
    </div>
    example.js
    Copied
    Copy To Clipboard
    $("#container").find("button:visible").first().text("First Visible Button");

    This will set the text of the first visible button to First Visible Button.

  4. Dealing with Empty Sets:

    When using .first() on an empty set, it returns an empty jQuery object. You can handle this scenario gracefully in your code to avoid unexpected behaviors.

🎉 Conclusion

The jQuery .first() method is a versatile tool for selecting the first element(s) within a jQuery object. Whether you need to target the initial element, chain it with other methods, or filter elements based on specific criteria, .first() provides a concise and efficient solution.

By mastering its usage, you can streamline your DOM manipulation tasks and create more responsive and interactive web applications.

👨‍💻 Join our Community:

To get interesting news and instant updates on Front-End, Back-End, CMS and other Frameworks. Please Join the Telegram Channel:

Author

author
👋 Hey, I'm Mari Selvan

For over eight years, I worked as a full-stack web developer. Now, I have chosen my profession as a full-time blogger at codetofun.com.

Buy me a coffee to make codetofun.com free for everyone.

Buy me a Coffee

Share Your Findings to All

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments
We make use of cookies to improve our user experience. By using this website, you agree with our Cookies Policy
AgreeCookie Policy