ZF-9425: invalid HTML attibute onClick (uppercase C)
Description
ajaxLink() helper generates HTML with attribute 'onClick', which should be lowercase 'onclick'. (HTML does not validate against XHTML1_STRICT)
To correct this, change line #257 in ZendX/JQuery/View/Helper/AjaxLink.php: from: $attribs['onClick'] = $js; to: $attribs['onclick'] = $js;
Comments
Posted by Christopher Thomas (cwt137) on 2010-03-16T21:51:47.000+0000
Attached is a patch
Posted by Benjamin Eberlei (beberlei) on 2010-04-16T00:29:14.000+0000
fixed