This is a discussion on Manipulating Attributes Using Javascript within the Website Design Articles forums, part of the Webmaster Articles/Tutorials category; Hi, this is just a little tutorial to show you a few ways that you can use javascript to change ...
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| | #1 (permalink) |
| WMT Addict | Hi, this is just a little tutorial to show you a few ways that you can use javascript to change attributes of different things, such as font colors, form values, image sources, etc. First of all, we'll start off with something that is quite easy, but is handy for something such as a username and password form. HTML Code: <input type="text" name="text" value="Username" onclick="value=''"> Next, i'll show you how to control the attributes of other objects. This is achieved by using: HTML Code: onclick="document.nameofobject.attribute='new value'" Here's an actual use of this: HTML Code: <input type="text" name="text"> <input type="button" value="Click Me" onclick="document.text.value='You clicked me!'"> Finally, i'll just show you a little addon to the previous one. This would be mainly used for inputs of various sorts. It's relatively similar to how when you click the smilies on the side of a post, when you're writing it. This will allow you to add onto the previous value of an attribute (most likely the value). HTML Code: onclick="document.nameofobject.attribute+='Extra bit to add on'" Here's an example of how you could actually use it: HTML Code: <textarea name="textarea">Text</textarea> <img src="images/smile.gif" onclick="document.textarea.value+=':)'"> I hope that this tutorial can be helpful to some of you out there
__________________ Kingdoms Of Battle << Check out my free to play online strategy game! SomeCoders - Coding blog, coding tips |
| | |
| Tags |
| attributes, javascript, manipulating |
| Thread Tools | |
| Display Modes | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| New JavaScript effects Library! | FrozenDice | Website Design Forum | 2 | 28-10-2005 02:25 |
| Basic Javascript | Morphmaster | Programming Articles | 0 | 26-06-2005 18:46 |