Showing whether zjrJS.Doc.aCl() actually works.
Used zjrJS Version:
Stable Minified version 20141202t2322 of zjrJS.
There is no newer Beta version available.
Preconditions
Javascript must be allowed to run on this page.
Successful When...
In the form, after pressing the Add Class button, the colour of its box turns blue.
Javascript must be allowed to run on this page.
Successful When...
In the form, after pressing the Add Class button, the colour of its box turns blue.
Test Code:
var test=({
run: function () {"use strict";
if (
!test.require( "zjrJS.Doc.aCl", "function" )
|| !test.require( "zjrJS.Doc.eid", "function" )
) {
return false;
}
var D = zjrJS.Doc;
D.aCl( "blue", D.eid( "receiver" ) );
D = null;
return false;
}
});