I have a problem I cant seem to figure out, been looking at it for the last 2 days…
I’m testing so my JS function to copy from form1 to form2 works. And it does, partially.
If you look at the fiddle i’ve pasted just the necessary bits of code.
- the input type with
name="txtTitle"gets copied fromname="hidTitle". - the input type with
name="txtCount"does not get copied fromname="hidCount".
But it should be working since it’s basically the same code?
From your JSFiddle – I think this is a simple mistake. you wrote
formDel.hidSoundeFileNameinstead offormDel.hidSoundFileNameremove the redundant “e” and you should be fine.
below is my working example. let me know if I missed something.