c8a07e4c0b
(use attachEvent instead of onfocus) git-svn-id: http://piwigo.org/svn/trunk@1608 68402e56-0260-453c-a942-63ccdbb3a9ee
42 lines
1 KiB
Text
42 lines
1 KiB
Text
<public:attach event="oncontentready" onevent="fixElements()" />
|
|
|
|
<script langage=javascript>
|
|
|
|
function setFocusStyle()
|
|
{
|
|
window.event.srcElement.className += ' focus';
|
|
}
|
|
|
|
function setBlurStyle()
|
|
{
|
|
window.event.srcElement.className = window.event.srcElement.className.replace( ' focus', ' nofocus');
|
|
}
|
|
|
|
function setClassFromType()
|
|
{
|
|
this.className += ' ' + this.type;
|
|
}
|
|
|
|
function fixElements()
|
|
{
|
|
for ( var i=0; i<this.elements.length; i++ )
|
|
{
|
|
var elem=this.elements[i];
|
|
switch ( elem.tagName )
|
|
{
|
|
case "INPUT":
|
|
elem.className += ' ' + elem.type;
|
|
if ( (elem.type != "radio") && (elem.type != "checkbox") )
|
|
{ /* setting focus/nofocus on those is a mess to handle in css */
|
|
elem.attachEvent( 'onfocus', setFocusStyle );
|
|
elem.attachEvent( 'onblur', setBlurStyle );
|
|
}
|
|
break;
|
|
case "SELECT":
|
|
case "TEXTAREA":
|
|
elem.attachEvent( 'onfocus', setFocusStyle );
|
|
elem.attachEvent( 'onblur', setBlurStyle );
|
|
}
|
|
}
|
|
}
|
|
</script>
|