How can you create a reference to a DOM element using jquery? In other words, what is the jquery equivalent of
document.frm.element_name
or
document.getElementById("element_id")
Someone could say:
$("#element_id")
Wrong, as this is a jquery object and not a DOM object. The right answer is:
$("#element_id").get(0)
Entrepreneur | Full-stack developer | Founder of MediSign Ltd. I have over 15 years of professional experience designing and developing web applications. I am also very experienced in managing (web) projects.