Click here to Skip to main content
16,021,169 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi


I want to open anchor link in particular div using jQuery,
i have more than one link.all lick should be open in particular div
Anybody suggest me?
Posted
Comments
Satyendra Kumar(Analyst Programmer) 9-Jan-13 3:33am    
Hi
Please clear your requirement. Do you want tooltip like popup or something else?

Thanks
moh 2012 9-Jan-13 7:59am    
HI Sir,

i don't want use tooltip.
Actually i have divided the page in diff div tag. In one tag i have Links , whenever i clicked any link, so this link should be open in particular div(Center Div)


Many Thanks
Satyendra

1 solution

To my understanding,
1) You want to Click Links you placed in a DIV
2) and that links content should open in another DIV.

JavaScript
<html>
<script src="Scripts/jquery-1.8.3.min.js" type="text/javascript"></script>
<script src="Scripts/jquery-1.8.3.js" type="text/javascript"></script>

<script type="text/javascript">
    $(document).ready(function () {
        $('#links a').click(function (e) {
            e.preventDefault();
            $("#myIframe").attr("src", $(this).attr('href'));
        });
    });
</script>
<body>
    <div id="links">
        <a href="http://microsoft.com">Microsoft</a> <a href="http://jquery.com">jQuery</a> <a href="#">TEST3</a>
    </div>
    <div id="parentDiv">
        <iframe id="myIframe" src=""></iframe>
    </div>
    <div>
    </div>
</body>
</html>


Accept as answer, if this is your requirement.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900