How can I hide a div with javascript if the browser is firefox only?
function detectBrowser(){ .... } hDiv = .... //getElementById or etc.. if (detectBrowser() === "firefox"){ hDiv.style.display = "none" }