Hey everyone, I've been working on making a textfield dynamic and I wanted to share my code with you:
<input type="text" id="test1" value ="dynamic" onfocus="this.disabled=true" onblur="this.disabled=false">
<input type="text" id="test2">
The fields disable properly, but for some reason they don't enable on blur. If anyone has a solution for me, I would really appreciate it.