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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Includes Question (ouch)

Status
Not open for further replies.

iggit

Programmer
May 20, 2001
47
US
Have been toying with calling a perl script from a different server using this:

<script language=javascript src=&quot;[script-url]&quot;></script>

And it responds with nothing.

So is my perl script screwed up? (it works fine by itself)
or am I missing something?

FYI: Javascript is NOT my native language.

Any help would be so greatly appreciated.
 
<script language=javascript src=&quot;[script-url]&quot;></script>

Therefore teh src value cannot point to a Perl script yes?

-pete


 
Makes sense (told you it wasn't my language of choice)

I've also tried
<img src=[script-url]> and still nothing.

Any ideas for a miraculous solution?

(Thank you for the response)
 
if your server will execute the perl script then this should work (it's just HTML not Javascript):

Code:
<img src=&quot;script-url&quot;>

-pete

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top