Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Remote scripting problem with Firefox

Status
Not open for further replies.

JScannell

Programmer
Jan 9, 2001
306
US
I have a website that has a users area where remote scripting calls are made to handle data entry validation.

This works perfectly in IE. However, some of my users are running into problems when theyattempt this in FireFox.

A popup message saying "ERROR: Cannot locate proxy which supports Remote Scripting. Was RSEnableRemoteScripting method invoked?" is displayed.

Here's my code that enables the remote scripting:

<BODY>

<SCRIPT language="javascript" src="rs.htm"></SCRIPT>
<SCRIPT language=javascript>RSEnableRemoteScripting(".");</script>


Can anyone help?

Jerry Scannell
 
With script tag to include external src, it becomes significant to use type attribute, and it is where it starts to play a material role. Nobody has the "courage" to not to support legacy language attribute in other situation.
><SCRIPT language="javascript" src="rs.htm"></SCRIPT>
[tt]<SCRIPT [blue]type="text/javascript" language="javascript"[/blue] src="rs.htm"></SCRIPT>[/tt]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top