I\'ve got a page with some questions and answers, the answers are collapsed by default. When they click the question I expand the hidden answer-div. The problem is that when
$("#myID").click(function(e) { if(e.preventDefault) e.preventDefault(); else e.stop(); });
e.preventDefault()alone did not work in older versions of IE.
e.preventDefault()