[PROGRAMMING TIPS] How to trigger select action while clicking a label
You need the following HTML code to make this work:
This code works for IE and Mozilla (FireFox) --> Tested.
You need the following HTML code to make this work:
This code works for IE and Mozilla (FireFox) --> Tested.
Please notice that MSIE accesses an HTML element using attribute ID, but Mozilla not. Mozilla uses attribute NAME instead of ID. So, you just simply write both attributes to make it work. See the following example:
<span id="var_name" name="var_name"></span></span>