Skip to content
Advertisement

How do I map an associative array to html element attributes?

I’m building a basic form building class to speed my workflow up a bit and I’d like to be able to take an array of attributes like so:

JavaScript

and map that to the attributes of a html element:

JavaScript

EDIT:

What is the cleanest way of achieving the above? I’m sure I could cobble something together with a loop and some concatenation but I get the feeling printf or similar could do it in a more elegant manner.

Advertisement

Answer

I think this should do it:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement