Master:
# 1    I used Thomas Brattli' scrollbable area code ages ago                  
exp
Online no
State
Grouping Member
Class class4
Score 348
Wealth 219
Posts 269
Login 11:49:09
Now We moved to xhtml, we found it does not work in Firefox. The reason is that there is some css syntax is not standard.

You need to change some things like top:10;left:20;width:300 to
top:10px;left:20px;width:300px

We also need to change a function from
function MoveArea(x,y){
this.x=x;this.y=y
this.css.left=this.x
this.css.top=this.y
}


to:


function MoveArea(x,y){
this.x=x;this.y=y
this.css.left=this.x + "px";
this.css.top=this.y + "px";
}
Hits: 176, Date: 2009-07-08 05:10:17
[Agree] ( 15 ) [Against] ( 17 )

1 - 1 [ 1]

Reply: I used Thomas Brattli' scrollbable area code ages ago

*First line:


More content:


Tags:



Hint: You cannot post here before loginLogin | Register

nothing