Selectors :
$(document); // Activate jQuery for object $('#mydiv') // Element with ID "mydiv" $('p.first') // P tags with class first. $('p[title="Hello"]') // P tags with title "Hello" $('p[title^="H"]') // P tags title starting with H |
Of A Young Computer Science Graduate Student
Selectors :
$(document); // Activate jQuery for object $('#mydiv') // Element with ID "mydiv" $('p.first') // P tags with class first. $('p[title="Hello"]') // P tags with title "Hello" $('p[title^="H"]') // P tags title starting with H |
Posted in Programming.
0 Responses
Stay in touch with the conversation, subscribe to the RSS feed for comments on this post.