When in doubt about the path you should specify to the .js/ .css files of the script, simply use absolute URLs to them. Right now you have:
Code:
<link rel="stylesheet" type="text/css" href="speechbubbles.css" />
<script src="speechbubbles.js">
/***********************************************
* Speech Bubbles Tooltip- (c) Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
***********************************************/
</script>
on your page, which assumes the files are located at http://www.paaudiovisual.co.uk/speechbubbles.css and http://www.paaudiovisual.co.uk/speechbubbles.js Both are broken if you click on those links btw. What you should do is upload these two files to the two locations pointed to by the above links, then modify your references to absolute URLs:
Code:
<link rel="stylesheet" type="text/css" href="http://www.paaudiovisual.co.uk/speechbubbles.css" />
<script src="http://www.paaudiovisual.co.uk/speechbubbles.js">
/***********************************************
* Speech Bubbles Tooltip- (c) Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
***********************************************/
</script>
This way, you can use the above references on any page on your site and expect the references to work.
Bookmarks