07-24-2009 03:15 AM
I am trying to support Blackberry on my web site.
To make my code clean I use __lookupGetter__ and __defineGetter__ for Opera/Safari/Firefox to act like IE. IE 8 is getting defineProperty so I might switch IE to be more like them later once I can stop supporting IE 6 and IE 7.
Sadly __defineGetter__ is not defined by BlackBerry browsers 4.6 and 4.7.
What is everyone doing as an alternative (not counting polling for all properties)...
Mike
07-27-2009 04:29 PM
To prove that I am trying to find solutions:
I found that IE 8 comes with some new way to defineProperties.
http://msdn.microsoft.com/en-us/library/dd229916(VS.85).aspx
I also found someone that made a polling solution (every 13ms)
Obviously both of these solutions do not work for me.
07-29-2009 01:05 PM