Hello,
what I am trying to do is this... I have a link on a page when i click the
link i want it to load "Page2.php?+..." into "myobj".
here is some of the code i was working with... hope someone can help...
Thank you.
<script>
$(document).ready(function(){
$("#generate2").click(function(){
$("#myobj").fadeOut("fast");
$("#myobj").slideToggle("slow");
$("#myobj").load(" ****what goes here**** ");
$(this).toggleClass("active");
});
});
</script>
*********
<div id="myobj" align="center">
<?php do { ?>
"Page2.php?idctg_ctg=<?php echo $row_categorys['idctg_ctg']; ? " ><?php
echo $row_categorys['name_ctg']; ?>
<?php } while ($row_categorys = mysql_fetch_assoc($categorys)); ?>
</div>
--
View this message in context:
http://www.nabble.com/load-dynamic-content-into-myobj-tp20080199s27240p20080199.htmlSent from the jQuery General Discussion mailing list archive at Nabble.com.