Problems with the refresh method in Firefox.
I created an Input tag , then , the value was displayed in the browser .
I want to change the value that was displayed . I tried to use the refresh method, it worked very well in the IE, but in the Firefox 1.0 it didn't work.
I´ve already tried a lot of things, but it didn't work .
Does anybody know any possible solution ?
Thanks.
I want to change the value that was displayed . I tried to use the refresh method, it worked very well in the IE, but in the Firefox 1.0 it didn't work.
<html>
<head>
<title>TestRefresh</title>
<SCRIPT type="Text/javascript" src="grid.js" ></SCRIPT>
</head>
<body>
<script>
var obj = new Active.HTML.INPUT;
obj.setAttribute("type", "text");
obj.setAttribute("value", "static text");
obj.setAttribute("title", "tooltip");
document.write(obj);
obj.setAttribute("value", "modified text");
obj.refresh();
</script>
</body>
</html>
I´ve already tried a lot of things, but it didn't work .
Does anybody know any possible solution ?
Thanks.
Rodrigo Perenha
February 22,