How do I determine if the variable is undefined or null? My code is as follows:
var EmpName = $("div#esd-names div#name").attr('class');
if(EmpName == 'undefined'){
//DO SOMETHING
};
<div id="esd-names">
<div id="name">
</div> </div>
But if I do this, the JavaScript interpreter halts the execution.