1 daethian2 Jun 08, 2007 05:21
3 daethian2 Jun 08, 2007 16:02
I was looking through some files last night and I remember seeing that..will give it a shot thanks!
4 daethian2 Jul 05, 2007 20:55
I tried this and apparently failed as I am not sure what section of the file I should be adding this?
Is there a reason (security I guess?) that some of these tags/code/whatever are not allowed by default?
5 yabba Jul 06, 2007 09:29
You need to add onmouseover to the $allowed_attributes of whichever tags you want to use it on. For example, to allow it on the <a> tag, you'd need to alter these two lines ( approx 305 && 337 in conf/_formatting.php ) :
'a' => A_attrs.' charset type href hreflang rel rev shape coords onmouseover', // Strict
.....
'a' => A_attrs.' charset type href hreflang rel rev shape coords target onmouseover', // Transitional
¥
6 daethian2 Jul 07, 2007 17:13
I think I found it. I can also add it to the IMG tag too right??
Thank you for your patience!
7 yabba Jul 10, 2007 11:42
You can add it to any tags that you desire ;)
¥
You'd need to crack open conf/_formatting.php and add it to all the tags you want to use it on.
¥