0

Is it possible to get the window.scrollY property in Javascript on the Palm Pre? Doesn't seem to be but maybe there is a secret Palm-ish way?

I've tried:

var y = window.scrollY;
var y = jQuery(window).scrollTop();

Neither seem to work. Anyone know the answer?

cobbal
  • 69,903
  • 20
  • 143
  • 156
Genericrich
  • 4,611
  • 5
  • 36
  • 55

1 Answers1

0

Unfortunatly, Palm does not care a lot about javascript standards... No API documentation is available and as far as I remember controlling scroll on Palm handsets is not possible.

I can't get UAProf but more informations can be found here if you wan't.

OcuS
  • 5,320
  • 3
  • 36
  • 45
  • Yes I don't want to set the scrollY I want to read it. Should return -1 if it can't provide it, not 0 since 0 is a valid value. – Genericrich Jan 14 '10 at 22:07