I would like to make a change to the OOH forms class, but I can't find the right function to modify.
What I want to achieve is for every <input> field to have an "id" attribute that holds the value of the name attribute.
So pretty much my current output looks like this:
<input type="text" name="sample">
and I want it to look like this:
<input type="text" name="sample" id="sample">
Any idea of how I could achieve this? I think it might be of use for others as well, as it corresponds with the current W3C recommendations for accessibility.
Thanks heaps, guys!