Dynamic created control in java script is not passing to next page
while I am try to get its value on next page after submission, dynamic created control is not accesible. Its working fine in IE
<script>
function myfunction(){
var element = document.createElement("input"); //Assign different attributes to the element. element.setAttribute("type", "text"); element.setAttribute("value", "sdf"); element.setAttribute("name", "mytxt"); element.setAttribute("id", "mytxt"); var myDiv=document.getElementById("mydiv"); myDiv.appendChild(element);
} </script>
while I am try to get its value on next page after submission, dynamic created control is not accesible. Its working fine in IE
<div id="mydiv" ></div>
<script>
function myfunction(){
var element = document.createElement("input");
//Assign different attributes to the element.
element.setAttribute("type", "text");
element.setAttribute("value", "sdf");
element.setAttribute("name", "mytxt");
element.setAttribute("id", "mytxt");
var myDiv=document.getElementById("mydiv");
myDiv.appendChild(element);
}
</script>
nix_solanki trɔe
All Replies (1)
I couldn't really see anything wrong with the code you supplied. Maybe you should show us the whole code to get further support.
Maudib11 trɔe