Support autofocus attribute on input elements
| | |
| | | } |
| | | |
| | | // attributes with no value |
| | | if (in_array($key, array('checked', 'multiple', 'disabled', 'selected'))) { |
| | | if (in_array($key, array('checked', 'multiple', 'disabled', 'selected', 'autofocus'))) { |
| | | if ($value) { |
| | | $attrib_arr[] = $key . '="' . $key . '"'; |
| | | } |
| | |
| | | 'type','name','value','size','tabindex','autocapitalize', |
| | | 'autocomplete','checked','onchange','onclick','disabled','readonly', |
| | | 'spellcheck','results','maxlength','src','multiple','placeholder', |
| | | 'autofocus', |
| | | ); |
| | | |
| | | /** |