I am using cakephp form helper and I want to set the input attribute autoFocus. The best I can get is autoFocus="autoFocus" which is not valid. I need to set it to just autoFocus.
<input type="text" name="fname" autofocus>
My code is:
echo $this->Form->input('title', array('class'=>'form-control','autofocus'));