The requested URL /devhttp://www.livingthreadstextileartists.com/dev/images/artists-images/jeanallton.jpg was not found on this server.
However, the image is on the server. For some reason that I do not understand, /dev has been added to the start of the URL which is why it can't be found. Can anyone tell me why the javascript is generating an incorrect URL and suggest a fix?
Please take a look at the URL because obviously the /dev is appended to the target URL.
Here is the script causing the issue:
<script language="javascript">
function updateImage (imageLocation)
{
//alert (location);
var url = 'http://www.livingthreadstextileartists.com/dev' + imageLocation;
document.getElementById("frameID").src = url;
}
</script>
You should remove the "dev" in the var url.... statement.
Bookmarks