dynamic - HTML Text Box output webpage value -
effectivily have web page text box want load value outputed when going link.
i have link called www.mydomin.com/number.html
this page displays number (lets displays 1234).
i have page called show.html.
this page has basic html text box.
i want basic html text box display output number @ www.mydomin.com/number.html
so text box should in theory display 1234
i have tried value="www.mydomin.com/number.html" shows actual link.
any ideas? appreciated.
you can use jquery ajax requests if needed (although agree @madara's first comment):
$.get("number.html",function(data){ $("#myinput").attr("value", data); }
Comments
Post a Comment