piwigo/template-common/inputfix.htc
2006-07-25 23:14:54 +00:00

43 lines
908 B
Text

<public:attach event="oncontentready" onevent="fixElements()" />
<script langage=javascript>
function setFocusStyle()
{
this.className += ' focus';
}
function setBlurStyle()
{
this.className = this.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.onfocus = setFocusStyle;
elem.onblur = setBlurStyle;
}
break;
case "SELECT":
case "TEXTAREA":
elem.onfocus = setFocusStyle;
elem.onblur = setBlurStyle;
}
}
}
</script>