I'm having an issue getting some simple code working for both Chrome and IE11 working properly.
Simply:
This works in IEii but not chrome:
var s = $('html, body').scrollTop();
alert (s);
And this works in chrome but not IE:
var s = $('body').scrollTop();
alert (s);
Any help to get it working properly for both browsers?
Thanks,