Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #72.8K
~819 People Reached
Favorite Forums
Web Development x 1
Hardware x 1
Favorite Tags
javascript x 1
pc-peripheral x 1
2 Posted Topics
Re: Don't know about the Amilo, but you MAY try to press Fn + a function key with a pic resembling a mouse. On my ESPRIMO notebook it's F6. Worked a treat. Easy eh? :P | |
[code=javascript] // this is actually defined somewhere else var strDivHeight = "95%"; // create object, div var d = document.createElement("DIV"); d.style.height = eval ('"' + strDivHeight + '"'); [/code] Works. But... eval() is evil, so the saying goes. Am I also able to get rid of eval() in *this* case? … |
The End.