I have an form input element and I want to change it's title attribute. This has got to be easy as pie but for some reason I cannot find how to do this. How is this done and where and how should I be searching on how to do this?
|
Before we write any code, let's discuss the difference between attributes and properties. Attributes are the settings you apply to elements in your HTML markup; the browser then parses the markup and creates DOM objects of various types that contain properties initialized with the values of the attributes. On DOM objects, such as a simple The current best practice is to avoid working with attributes unless they are custom or there is no equivalent property to supplement it. Since You can read more about the difference between attributes and properties here or here. With this in mind, let's manipulate that Get or Set an element's
|
|
I beleive
should do the trick... I think you can find all the core functions in the jquery docs, although I hate the formatting: http://docs.jquery.com/Main_Page |
|||
|
|
|
Another option, if you prefer, would be to get the DOM element from the jQuery object and use standard DOM accessors on it:
The "jQuery way", as mentioned by others, is to use the attr() method. See the API documentation for attr() here. |
|||
|
|