Forum Moderators: open

Message Too Old, No Replies

Syntax Problem (hyperlinked image)

         

kkonline

11:05 am on Sep 2, 2007 (gmt 0)

10+ Year Member



When i write
<script language=javascript>document.write("<a href='http://del.icio.us/post?url="+document.location.href+"&title="+document.title+"' ><img src="/includes/addons/social/images/delicious.png" alt="ADD TO DEL.ICIO.US"></a>")</script>

i donot get any display of hyperlinked image. What to do

birdbrain

2:01 pm on Sep 2, 2007 (gmt 0)



Hi there kkonline,

try it like this,..


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

<style type="text/css">

</style>

<script type="text/javascript">

window.onload=function() {
createLink();
}

function createLink() {

anc=document.createElement('a');
anc.setAttribute('href','http://del.icio.us/post?url="+document.location.href+"&title="+document.title+"');

pic=document.createElement('img');
pic.setAttribute('src','includes/addons/social/images/delicious.png');
pic.setAttribute('alt','ADD TO DEL.ICIO.US');

anc.appendChild(pic);

document.getElementById('mylink').appendChild(anc);

}

</script>

</head>
<body>

<div id="mylink"></div>

</body>
</html>

birdbrain

Trace

1:01 pm on Sep 4, 2007 (gmt 0)

10+ Year Member



You simply had a little syntax issue with your above line, it should be like this;
<script type=text/javascript>document.write("<a href='http://del.icio.us/post?url="+document.location.href+"&title="+document.title+"' ><img src=\"/includes/addons/social/images/delicious.png\" alt=\"ADD TO DEL.ICIO.US\"></a>")</script>

or
<script type=text/javascript>document.write("<a href='http://del.icio.us/post?url="+document.location.href+"&title="+document.title+"' ><img src='/includes/addons/social/images/delicious.png' alt='ADD TO DEL.ICIO.US'></a>")</script>

or
<script type=text/javascript>document.write('<a href="http://del.icio.us/post?url='+document.location.href+'&title='+document.title+'" ><img src="/includes/addons/social/images/delicious.png" alt="ADD TO DEL.ICIO.US"></a>')</script>