Click here to Skip to main content
15,885,757 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
hi all
my result ajax content is:
HTML
<Input type="text"/>

when i use:
HTML
       $("mydiv").append(result);
//or
       $("mydiv").html(result);
//or
      var x=$.parshtml(result);
      $("mydiv").append(x.html);
//or
etc

it exactly show :
<Input type="text"/>
but i wana show me textbox.
how i fix this problem.
thanks all
Posted
Comments
Sergey Alexandrovich Kryukov 15-Aug-15 11:54am    
Then append a text box, not x.html. Perhaps x.html is its value, that's it.
—SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900