Changes between Initial Version and Version 1 of Ticket #2736
- Timestamp:
- Apr 23, 2008, 2:31:21 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2736 – Description
initial v1 1 1 Just a simple bug that I found. 2 2 3 {{{ 3 4 Command________________________________Returned________ 4 5 Setting the offsetLeft attribute. … … 6 7 $("#HelpText").attr("offSetLeft", 69); - {...} works. 7 8 $("#HelpText").attr("OFFSETLEFT", 69); - {...} works. 9 }}} 8 10 9 11 Retrieving the offsetLeft attribute 12 {{{ 10 13 $("#HelpText").attr("offSetLeft") - "69" 11 14 $("#HelpText").attr("offsetLeft") - "69" 12 15 $("#HelpText").attr("oFfSEtLeft") - "69" 16 }}} 13 17 14 18 It appears when setting the value only the above case does not seem to work... I'm unsure about this.