Hey All,
I have this problem where when I have this html in firefox it opens a new window
<a style="float:right;" href='javascript:window.location.href="#";'onClick="javascript:addNewRecord();">New Record</a>
I have tried self.location, window.location, #body, and #h1 as the href.
Originally I had the code as, but in firefox that did not do anything but open a fresh window, and not perform my function. The code works perfect in chrome.
<a style="float:right;" href="javascript:addNewRecord();">New Record</a>