My aspx page currently contains
<input type="text" name="openid_username" />
<input type="text" name="openid_identifier" />
but now I would like to replace them
<asp:TextBox ID="openid_username" runat="server"></asp:TextBox>
<asp:TextBox ID="openid_identifier" runat="server"></asp:TextBox>
so how do I change the following jquery to display input fields to replace text fields?
var $usr = $this.find('input[name=openid_username]');
var $id = $this.find('input[name=openid_identifier]');
source
share