vote up -1 vote down star

Trying to use an onmouseover event

echo $html->link("Dashboard", 
     "/dashboard/index", 
     array("onmouseover" => "Tip('Test');") );

becomes

<a href="/dashboard/index" onmouseover="Tip(&#039;Test&#039;);">Dashboard</a>

How do I prevent the link function from removing the single quotes?

flag

2 Answers

vote up 1 vote down check

Using Cake 1.2, this should definitely work:

echo $html->link('Dashboard', '/dashboard/index',
array("onmouseover" => "Tip('Test');"), null, false);

The last parameter is the escape option. It defaults to true.

link|flag
vote up 1 vote down

This should work:

echo $html->link("Dashboard", 
     "/dashboard/index", 
     array("onmouseover" => "Tip('Test');"),
     array('escape' => false));
link|flag
added onclick="return confirm(&#039;Array&#039;);" after the onmouseover. It went into the confirm return true/false parameter of link. – Jack B Nimble May 2 at 23:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.