it not jquery or any conflict issue. it’s problem of the imageMenu.js script which use of unknown function “getStyle” which I think it support in another browsers and not in chrome.
contact me via skype and I’ll consider it for you. my skype is rongconvn89
rongcon said
it not jquery or any conflict issue. it’s problem of the imageMenu.js script which use of unknown function “getStyle” which I think it support in another browsers and not in chrome.
contact me via skype and I’ll consider it for you. my skype is rongconvn89
I respectfully disagree. It’s exactly how i stated in my post. The issues your seeing with getStyle is due to the conflict caused by the global variable $ being assigned ( note that it’s not var’d) hence global scope. imageMenu uses mootools and the assignment of the global $ variable conflicts with it.
It’s not even hard to verify, plus there is no need to have that particular line in there anyway, so removing it is warranted.
Edit: here is the getStyle method documented : Element.Style
which works well once the conflict is resolved, i.e. that particular line removed.
Disabling the full width audio player does fix the issue however, I’d really like to keep that plugin and see if it’s possible to fix what ever is causing it to disable the slider’s accordion function.
ro1and said
Disabling the full width audio player does fix the issue however, I’d really like to keep that plugin and see if it’s possible to fix what ever is causing it to disable the slider’s accordion function.
So contact the author and ask for help. He seems like a nice guy judging from the comments. This is the best approach.
The author directed me here, but thanks for trying to help.
- Microlancer Beta Tester
- Author had a File in an Envato Bundle
- Author was Featured
- Bought between 50 and 99 items
- Exclusive Author
- Has been a member for 3-4 years
- Item was Featured
- Sold between 100 000 and 250 000 dollars
Maybe
this.widths.closed = this.elements[0].getStyle('width').toInt();
to
this.widths.closed = jQuery(this).width();
?@Zoomlit, is it the imageMenu.js file I try this code replacement? Thank you.
