can any one help me please this is not working in FIREFOX. <form> <input name="btn_remove" type="button" id="btn_remove" value="Open Now" onClick="document.location.href('http://forums.digitalpoint.com')"> </form> thanks in advance.
1. The location object belongs to window, not document. 2. The location object is not a function. 3. All event handler names are lower case. Do this <input name="btn_remove" type="button" id="btn_remove" value="Open Now" onclick="window.location.href = 'http://forums.digitalpoint.com'"> Code (markup): edit: A little slow. cheers, gary