html - IE (or other) add input to web form and disable field -
we use cisco's unified attendant web interface @ work , have occasional issue user sits down answer calls company , out of habit sees "extension" field , enters own instead of receptionist extension.
is there way can take control of field , input info , disable field? knowledge have control of server, not source.
- while don't believe can page , js.... possible tell ie or ff load javascript file on
- every returns? if isn't possible possible either ff or ie extension/plugin? there purely
- js/html method i'm not thinking of?
i've looked javascript/html option using iframes, beyond wasn't sure next.
here example using javascript desktop. can create shortcut , inform people use specific shortcut.
var urlconstant = "http://www.google.com/"; var ie = new activexobject("internetexplorer.application"); ie.visible = true; ie.navigate(urlconstant); while(ie.readystate != 4){ } var document = ie.document; document.getelementbyid("gbqfq").value = "stackoverflow";
obviously, change element id , value liking.
you can create in vbscript. quickest & easiest way.
Comments
Post a Comment