jquery help(with .load() function)

Status
Not open for further replies.

Arpit15

Active Member
43
2011
3
470
hi.

i have a page with an image and with some social bookmarking buttons(fb like,google +,digg,stumble upon).
when i open this page it shows all the buttons as wanted.
but i want to display this page in another page and for that i am using jquery's .load() function. the problem is when it loads the page with the image digg and stumble upon buttons does not appear.
is there any solution to this problem?
 
4 comments
i cannot show you the full code but here the script that calls for the page with image:
Code:
<script> $(document).ready(function(){ $("#pic").load("http://localhost/Z11/img.php?id=6"); $("img[height=120]").click(function(){ $("img[height=120]").removeAttr('class'); var id=$(this).attr('id'); $("#pic").load("http://localhost/Z11/img.php?id="+id); $(this).attr('class','mark'); })}); </script>
and here is the page with image:
Code:
<img src='[URL="http://www.wjunction.com/view-source:http://localhost/Z11/uploads/a240982a13a2a0669a94125341ef01c3.jpg"]http://localhost/Z11/uploads/a240982a13a2a0669a94125341ef01c3.jpg[/URL]' class='mpic'><div id='social'> <div class='d'><g:plusone size='tall' href='[URL="http://www.wjunction.com/view-source:http://localhost/Z11/img/5/"]http://localhost/Z11/img/5/[/URL]'></g:plusone></div> <div class='d'><su:badge layout="5" location='http://localhost/Z11/img/5/'></su:badge></div> <div class='d'><fb:like href='[URL="http://www.wjunction.com/view-source:http://localhost/Z11/img/5/"]http://localhost/Z11/img/5/[/URL]' layout='box_count'></fb:like></div> <div class='d'><a class="DiggThisButton DiggMedium" href='[URL="http://www.wjunction.com/view-source:http://digg.com/submit?url=http%3A%2F%2Flocalhost%2FZ11%2Fimg%2F5%2F&title=http%3A%2F%2Flocalhost%2FZ11"]http://digg.com/submit?url=http%3A%2F%2Flocalhost%2FZ11%2Fimg%2F5%2F&amp;title=http%3A%2F%2Flocalhost%2FZ11[/URL]'></a></div> </div> <div id='fb-root'></div> <script src="[URL="http://www.wjunction.com/view-source:http://connect.facebook.net/en_US/all.js#xfbml=1"]http://connect.facebook.net/en_US/all.js#xfbml=1[/URL]"></script> <script type="text/javascript" src="[URL="http://www.wjunction.com/view-source:http://apis.google.com/js/plusone.js"]http://apis.google.com/js/plusone.js[/URL]"></script> <script type="text/javascript" src='[URL="http://www.wjunction.com/view-source:http://widgets.digg.com/buttons.js"]http://widgets.digg.com/buttons.js[/URL]'></script> <script type="text/javascript" src='[URL="http://www.wjunction.com/view-source:https://platform.stumbleupon.com/1/widgets.js"]https://platform.stumbleupon.com/1/widgets.js[/URL]'></script>
 
Status
Not open for further replies.
Back
Top