vote up 1 vote down star

hi,

I have below html:

<div class="threeimages" id="txtCss">  
<a>   
       <img alt="Australia" src="/Images/Services%20button_tcm7-9688.gif"/>
</a>        
    <div class="text" id="txtLink">            
    	<h2>
    		<a href="/partnerzone/downloadarea/school-information/australia/index.aspx">Australia</a>
    	</h2>            
    	<p>Land of the sunshine!</p>        
    </div>
</div>

Now if you see there is href in div ID "txtLink" i.e. Australia

I want this at the runtime of page the same href values get copied into above tag of div ID "txtCss", I mean when my page gets displayed my html will be as below:

<div class="threeimages" id="txtCss">  
<a href="/partnerzone/downloadarea/school-information/australia/index.aspx">   
       <img alt="Australia" src="/Images/Services%20button_tcm7-9688.gif"/>
</a>        
    <div class="text" id="txtLink">            
    	<h2>
    		<a href="/partnerzone/downloadarea/school-information/australia/index.aspx">Australia</a>
    	</h2>            
    	<p>Land of the sunshine!</p>        
    </div>
</div>

please suggest some code for above problem

flag

42% accept rate
Make sure that when you post code you set it in a code block either by placing 4 spaces in front of each line or by highlighting the code and clicking the "code" button, its the one with the 1s and 0s on it. – Unkwntech May 20 at 11:04
I assume it's javascript – SilentGhost May 20 at 11:05
What kind of programming language are you using? PHP, ASP.NET, python, plain HTML...? – Erik May 20 at 11:05
it would be good if I get it in plain html – Solution May 20 at 11:08

4 Answers

vote up 5 vote down check

Go like this: Create a js file with something like this:

$(document).ready(function() {
    $('.threeimages').each(function(){
	$(this).DupeHref();
    });
});

jQuery.fn.DupeHref =  function(){		
    var target = $(this).find(".text h2 a").attr("href");
    $(this).find("a").attr("href", target);
}

Reference both the jquery and this javascript file in your html. Something like this:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
		<title>Test</title>			
	</head>
	<body>
		<div class="threeimages">  
			<a>   
			    <img alt="Australia" src="/Images/Services%20button_tcm7-9688.gif"/>
			</a>        
			<div class="text">            
			    <h2>
			        <a href="/partnerzone/downloadarea/school-information/australia/index.aspx">Australia</a>
			    </h2>            
			    <p>Land of the sunshine!</p>        
			</div>
		</div>
		<div class="threeimages">  
	                 <a>   
			    <img alt="Belgium" src="/Images/Services%20button_tcm7-9689.gif"/>
			</a>        
			<div class="text">            
				<h2>
						<a href="/partnerzone/downloadarea/school-information/belgium/index.aspx">Belgium</a>
				</h2>            
				<p>Land of beer and food!</p>        
			</div>
		</div>
		<script src="./content/js/jquery-1.2.6.min.js" type="text/javascript"></script>
		<script src="./content/js/dupetargets.js" type="text/javascript"></script>
	</body>
</html>
link|flag
Can you please make it more clear as I am new to jquery – Solution May 20 at 11:08
gimme a sec, I'll write you something up – boris callens May 20 at 11:11
One thing I missed in above question that there are three div id "txtCss" as well as three div ID "txtLink" and if I am using your code then it is showing error on "$" saying Error: $ is not defined Source File: cmsstag/js/manoj.js Line: 1 – Solution May 20 at 11:33
the $ is from jquery. Make sure you are importing the jquery library. There can never be multiple nodes with the same id. Either you have to give them unique id's or you have to remove the id and use classes. The script could be altered to accept the threeimages classed nodes and only work in that node. – boris callens May 20 at 11:38
how can I use this code for the "classes" please give my the link of importing jquery. – Solution May 20 at 11:41
show 3 more comments
vote up 4 vote down

this is the shortest answer without using any library and works only thing what you want

var tc = document.getElementById("txtCss");
var ary = tc ? tc.getElementsByTagName("a") : [];
if(ary.length >= 2)
    ary[0].href = ary[1].href;
link|flag
+1 for tc ? tc.getElementsByTagName() : [] – Grant Wagner May 20 at 21:50
vote up 0 vote down

You can use:

var txtLink = document.getElementById('txtLink');
var a = txtLink.getElementsByTagName('a');
if (a != null && a.length > 0) {
    var setLink = txtLink.parentNode.getElementsByTagName('a');
    if (setLink != null && setLink.length > 0) {
        setLink[0].href = a[0].href;
    }
}

I think that this should work..

link|flag
Dear jose its giving error that "txtLink" is null any idea – Solution May 20 at 11:58
vote up 0 vote down

This is a simple understandable n00b like code ...

 <html>
  <head>
   <script language="javascript">  
  function simpleChangeURL(){
        var anchors = document.getElementsByTagName('a');
        if(anchors != null & anchors.length > 0){
        	anchors[0].href = anchors[1].href;	
        }	
    }

    function simpleChangeByAustraliaURL()
    {
        var anchors = document.getElementsByTagName('a');
        var images = document.getElementsByTagName('img');
        var imageNeeded;
        var anchorNeeded;
        if(images != null){
        	for( var i = 0; i < images.length ; i++){
        		if (images[i].alt == 'Australia') imageNeeded = images[i];
        	}
        }
        if(anchors != null){
        	for( var j = 0; j < anchors.length ; j++){
        		if (anchors[i].firstChild.data == 'Australia') anchorNeeded = anchors[i];
        	}
        }
        if(imageNeeded != null && anchorNeeded!= null){
	var imageAnchor = imageNeeded.parentNode;
	imageAnchor.href = anchorNeeded;

}

    }


    </script>
    </head>

    <body>
    <div class="threeimages" id="txtCss">  
    <a>   
           <img alt="Australia" src="/Images/Services%20button_tcm7-9688.gif"/>
    </a>        
        <div class="text" id="txtLink" >            
            <h2>
                    <a href="/partnerzone/downloadarea/school-information/australia/index.aspx">Australia</a>
            </h2>            
            <p>Land of the sunshine!</p>        
        </div>
    </div>
    <script> simpleChangeByAustraliaURL();</script>
    </body>
    </html>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.