Please make sure you read, understand, and follow Rules and Terms of Service.
0 Members and 1 Guest are viewing this topic.
A business person’s best customers are always using the cheapest piece of shit computer out there. I don’t have the sources to back it up, but I’d like to say it’s a proven fact.
Use objects when they make sense and functions when they don't.
if (typeof ChgTxt == 'function') {
It is necessary that the function returns the value.Use return operator in function body.
function ChgTxt() { // your code return boolValue;}if(ChgTxt) alert('True!')else alert('False!')