Windows XP2 SP2 - Javascript error in browser?

  • Thread starter Thread starter news.onetel.net.uk
  • Start date Start date
N

news.onetel.net.uk

Hi,

I downloaded the public beta of sp2 a while back and I have noticed that
using such code as this:

onchange="this.form.ac.value='delete';this.form.submit()

now causes javascript errors.

Was anything changed or taken away when I upgraded to SP2?

Is there anything I can do to reistate javascript?

Thanks
 
Hello!

I guess my problem wasn't the "onchange"-event, althought IE refered to this.
The mentioned page contains a frameset switching between http and https.
It seems referencing between the frames sometimes leads to a problem that IE
doesn't indicate.

The effect: If you call a script-function after referencing to another frame,
IE will indicate an error, althought there's no error in your code.

Old code:
<a href="url" target="framename">link</a>

Possible solution (working code):
<a href="javascript:parent.frames[framename].location.replace(url)">link</a>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top