This means the element is not a ClearlyHTML element
Examples
var a = clrly.new("h1", {}, "hello"); // Create a new element with clrly.new
if(a.isClearlyHTML){ // Check if this is a ClearlyHTML element
alert("yes!"); // Alert if it is
}
var a = <h1>hello</h1>; // Create a new element
if(a.isClearlyHTML){ // Check if this is a ClearlyHTML element
alert("yes!"); // Alert if it is
}
Check if the element is a ClearlyHTML element - if so - alert!