IE8 and jquery - Object doesn't support this property or method
- by rjovic
Internet Explorer 8 is giving me error Message: Object doesn't support this property or method in this part of code :
<script>
$(function () {
$("div.scrollable").scrollable(
{
vertical: true,
size: 3
}).mousewheel();
});
</script>
Can someone tell me what am I missing here? Scrollable is working fine. Thank you..