Hi Omstef,
To resolve this problem in IE browser, please try to do as following:
– open the file “script.js” in the folder “plugins/search/jak2_filter/”, then find this lines code:
if(browser =='ie')
{
$('catid').addEvents({
focus : function(){
this.setStyle("origWidth", this.getStyle("width"));
this.setStyle("width", "auto");
},
blur : function(){
this.setStyle("width", this.getStyle("origWidth"));
}
});
}
Replace to:
if(browser =='ie')
{
if($('catid')){
$('catid').addEvents({
focus : function(){
this.setStyle("origWidth", this.getStyle("width"));
this.setStyle("width", "auto");
},
blur : function(){
this.setStyle("width", this.getStyle("origWidth"));
}
});
}
}
Regards,