Home › Forums › JavaScript › javascript style.display › Re: javascript style.display
October 28, 2011 at 8:30 pm
#89871
Member
In your code you have a curly brace where a parentheses should be
// Won't work
document.getElementById{"contactForm")
// Will work
document.getElementById("contactForm")