Skip to main content
Inspiring
December 3, 2007
Question

CFM works on firefox, not on IE

  • December 3, 2007
  • 2 replies
  • 397 views
Hello,

I cant figure out why my script works in firefox but not in IE... any help would be welcome. Basically there is a list of records where a user can click on edit or delete images which lets them edit or delete the record. When the user clicks the delete image the record should be deleted. When the user clicks the edit image a form should be loaded and there he can make the adjustments to edit the record.

In firefox, both options work perfectly.

In IE, the delete option works but when the user click edit the form where he can edit never pops up.

I only attached relevant parts of the code. I'Il post the whole thing if needed. I dont understand how its working perfectly on 1 browser but not on another.
This topic has been closed for replies.

2 replies

Inspiring
December 4, 2007
Likely its that "edit" is an image. I would try using buttons instead.

December 4, 2007
Do you have your pop-ups being blocked in IE? Also, in IE look down in the lower left corner of the browser and see if there's a yellow exclamation point. It would tell you there's a JavaScript error.
Inspiring
December 4, 2007
Thanks for helping. I get no errors in IE or Firefox.

I think i have found the problem...but not sure of how to solve it.

According to the debugger the form.edit value is passed on firefox when the edit image is clicked:
EDIT 4
EDIT.X 10
EDIT.Y 7
FIELDNAMES EDIT.X,EDIT.Y,EDIT

IN IE the edit value is not passed, only the X and Y counterparts:
EDIT.X 3
EDIT.Y 7
FIELDNAMES EDIT.X,EDIT.Y

What causing this? May it be that there are repeated input names? How do i go around solving this?