Quote:
Originally Posted by devnull69
Why would you use eval() like this
Code:
eval("document.getElementById(\"thetbl"+i+"\").style.display='none'");
It is equivalent to
Code:
document.getElementById("thetbl"+i).style.display='none';
You should never use eval() ... it's considered very bad practice
|
Hi Devnull69,
thank you for your attention, that code has been advised to me by someone, I don't see any error on the javascript console regarding to that. I may do change that and use your helpful advise, but for now my main concern is to make the datetime picker work.