Skip to content
This repository has been archived by the owner on Oct 6, 2022. It is now read-only.

Latest commit

 

History

History
25 lines (19 loc) · 609 Bytes

result.eval.md

File metadata and controls

25 lines (19 loc) · 609 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.