Principal Editors:
Carmen J. Marsit, Professor [Research Interests]
Department of Environmental Health
Rollins School of Public Health
Emory University
Atlanta, GA, USA
Padma Vasudevan, Professor (Retd.) [Research Interests]
Centre for Rural Development and Technology
Indian Institute of Technology
New Delhi, India
// to check if checkbox is checked
// to check if checkbox is checked
$(document).ready(function(){
$(‘#fluency’).change(function() {
if(this.checked != true){
alert(‘you need to be fluent in English to apply for the job ‘+$(“#myname”).val());
}
});
});