On 31 Ott, 19:44, Parijat Kalia <[email protected]> wrote: > Hey guys,r unning into a silly doubt that should so not happen at all! > > I have a textarea tag, > > <?php echo textarea_tag('hint_box','','size=70x4', > array('onclick'=>'javascript:alert("yo") ')) ;?> > > and the onclick event is failing to render itself in the HTML tag. > > Any pointers what I am doing wrong here?
It's wrong to rely on html inline javascript. You should move your javascript logic into a javascript file, relying on javascript events. See http://api.jquery.com/click/ cheers Massimiliano -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en
