Changing Text
-
I would like to change Text on a webpage on the fly. I know about the innerText property for ie. I cann't use this however becuase I am not using ie. Or netscape for that matter. I need a way that is very browser nonspecific. Is there anyway to do this using javascript or JSP. I want to be able to change the text on the screen without reloading the page. Thank you. Mardigin.
-
I would like to change Text on a webpage on the fly. I know about the innerText property for ie. I cann't use this however becuase I am not using ie. Or netscape for that matter. I need a way that is very browser nonspecific. Is there anyway to do this using javascript or JSP. I want to be able to change the text on the screen without reloading the page. Thank you. Mardigin.
hi.. you can put that portion that changes in a separate frame(myFrame).. then make a link with target = myFramee .. when the user clicks the link the page in (myFrame) loads with new values So you can make it in asp to accept arguments..Got it ?
-
I would like to change Text on a webpage on the fly. I know about the innerText property for ie. I cann't use this however becuase I am not using ie. Or netscape for that matter. I need a way that is very browser nonspecific. Is there anyway to do this using javascript or JSP. I want to be able to change the text on the screen without reloading the page. Thank you. Mardigin.
Sounds like you're looking for the DOM interfaces in JavaScript: http://www.w3.org/DOM/DOMTR[^] http://www.mozilla.org/docs/dom/domref/dom_el_ref.html[^] - Mike