Dan Beam
Member since Oct 27, 2009
- Profile: /members/4617-dan-beam.htm
- URL: http://danbeam.org
- Comments: 3
Recent Blog Comments By Dan Beam
-
jQuery Powered Mine Sweeper Game
Posted on Oct 27, 2009 at 11:32 AM
Great game, man. May want to consider using event handlers for onContextMenu / onMouseDown (well, specifically right clicks) instead of using the Alt + Click approach, as it's not working for me in Linux. When you use alt + click (in Gnome at least), it simply tries to move your window instead of ... read more »
-
JSON: Minor But VERY Important Detail Creating Syntax Error: Invalid Label
Posted on Oct 27, 2009 at 11:21 AM
>>> eval( { "an":"object" } ); Object an=object >>> eval( '{ "an":"object" }' ); SyntaxError: invalid label >>> eval( '({ "an":"object" })' ); Object an=object wtf, right?... read more »