Possible Duplicate:
Google Closure Compiler parse error: invalid property id forcss({float:'left'})
I tried to use closure compiler from
http://closure-compiler.appspot.com/home
to compile code
// ==ClosureCompiler==
// @output_file_name default.js
// @compilation_level ADVANCED_OPTIMIZATIONS
// ==/ClosureCompiler==
css({ float: 'left' })
but got error
JSC_PARSE_ERROR: Parse error. invalid property id at line 1 character 6
css({ float: 'left' })
How to fix it? This code is used in Oleg jqGrid createContexMenuFromNavigatorButtons method posted in stackoverflow answer.
css({float:'left'})
– Poinciana