i am using pretty photo for my gallery. i want some description to be in the pop up.i give it in gref title tag (test) Now i want the title content in my jquery. how can i access it?

link|improve this question

44% accept rate
feedback

1 Answer

up vote 3 down vote accepted

try

var title = $('element').attr('title');
link|improve this answer
actually i want the title tag for a href . But the page contains so many hrefs. i give id=test for the href tag and used as $('#test').attr('title'). Then the page hangs and gives javascript error. – praji Aug 25 '11 at 13:21
1  
If there are multiple elements using id="test" then it's invalid, you must change id to class. – Burning the Codeigniter Aug 25 '11 at 13:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.