We're calling on all EU-based Mozillians with iOS or iPadOS devices to help us monitor Apple’s new browser choice screens. Join the effort to hold Big Tech to account!

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Rohkem teavet

Dynamic created control in java script is not passing to next page

  • 1 vastus
  • 1 on selline probleem
  • 1 view
  • Viimati vastas Maudib11

more options

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>

Muudetud nix_solanki poolt

All Replies (1)

more options

I couldn't really see anything wrong with the code you supplied. Maybe you should show us the whole code to get further support.

Muudetud Maudib11 poolt