Search results for query: *

  1. T

    Add attribute to every contol in project

    figured it out this may not be the best way to do it but here is how I accomplished it: javascript (added this to the onload attribute of my body tag. what this does is add the attribute onkeydown=getkey(); to every textbox and textarea) : function Test () { var elements =...
  2. T

    Add attribute to every contol in project

    what is the best way to add an attribute to every <input type='text'> item in a project? {ex. <input type='text' onclick="alert('textbox was clicked.')"} I tried useing javascript and it would only add the attribute to the last one in the loop. I don't know how to do it in vbscript or...
Back
Top