Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 611 Bytes

result.eval.md

File metadata and controls

26 lines (19 loc) · 611 Bytes

Result.eval

The eval function is established to run a script at the web. It can be called more than once.

Sample

var result = new Result();
result
.eval("$('#table1 tr:even').css('background-color','green');")
.eval("$('#table1 tr:odd').css('background-color','yellow');");

API

CallingReturning
Result . eval ( script )Result
ParametersTypeDescription
scriptStringThe script will be run at the web.