You are here: irt.org | FAQ | JavaScript | Form | Q1322 [ previous next ]
Use the onFocus event handler in the other frame to set the focus back to the original frame. This will then cause the chnage event to fire for the amended form field:
Original frame:
<form> <input type="text" onChange="alert('changed')"> </form>
In the other frame:
<body onFocus="parent.originalFrameName.focus()">