Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

jQuery Question

Options
  • 05-06-2009 10:10am
    #1
    Closed Accounts Posts: 184 ✭✭


    Hi,

    Just have a question in relation to jQuery, just wondering if anyone knows how to find the id of a class, for example say I have a div of the following:

    <div class="div" id="1"></div>

    How would I find the id part of this?
    Cheers


Comments

  • Registered Users Posts: 128 ✭✭johnny_rambo


    $("div.div").attr("id");


  • Closed Accounts Posts: 184 ✭✭vodkadub


    Cheers man, worked a charm :D


  • Registered Users Posts: 2,031 ✭✭✭colm_c


    Technically you can't have an id or class start with a number!

    It throws complications if you try to do other stuff esp with css, jQuery should be ok though, but I'd just prefix it with a letter.


Advertisement