-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Object doesn’t support this property or method #25
Comments
Can you give us an example? |
Which version of MooTools and which build of snack are you using? There's a chance the Slick selector engine may bet getting defined twice and causing problems on the page. Let me know that stuff and then I can look into it. |
Any version of mootools. |
I just did this test and it worked just fine in IE 8 Windows 7: <!doctyp html>
<html>
<head>
<meta http-equiv=Content-type content="text/html; charset=utf-8">
<title>snack/moo test</title>
</head>
<body>
<script src="https://ajax.googleapis.com/ajax/libs/mootools/1.2.1/mootools.js"></script>
<script src="snack-qwery-min.js"></script>
<script>
var whatsThis = function() {
return this.name;
};
var foo = { name: 'foo' };
var bound = snack.bind(whatsThis, foo);
alert( bound() );
</script>
</body>
</html> You sure its only an IE problem? Which version of IE? Unless you can provide a simplified test case I can't really help :( |
Hi , Can you look into this site which using mootools and snack. Thanks On Tue, Jan 10, 2012 at 12:23 PM, Ryan Florence <
|
Hi,
Snack.js core functions will not work in IE browser if we have snack.js and mootool.js in the same page.
We use snack.js for attaching events, adding/removing the classes,
wrapping the DOM elements and JSONP.
If we have snack and mootools files in the same page, core functions like snack.attach,snack.bind,snack.wrap,snack.addClass,snack.removeClass
do not work on IE and mozilla browser.
IE browser shows error as “Object doesn’t support this property or method.”
Please help me on this.
Thanks
Ramesh
The text was updated successfully, but these errors were encountered: