Showing whether zjrJS.Doc.aC() 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 each pressing on the Append Child button, an extra checkbox appears.
Javascript must be allowed to run on this page.
Successful When...
In the form, after each pressing on the Append Child button, an extra checkbox appears.
Test Code:
var test=({
run: function () {"use strict";
if (
!test.require( "zjrJS.Doc.aC", "function" )
|| !test.require( "zjrJS.Doc.eid", "function" )
) {
return false;
}
var D = zjrJS.Doc, extra;
extra = D.eid( "template" ).cloneNode( true );
D.aC( extra, D.eid( "receiver" ) );
D = extra = null;
return false;
}
});