este es todo el codigo que tengo, los dos primeros scripts funcionan biien, pero yo pienso porque cargan desde otro div, en cambio el que carga desde el mismo div no funciona, no se por donde mirarlo ya
Código:
<script type="text/javascript">
jQuery.noConflict()
jQuery(document).ready(function(){
jQuery("#nav a").each(function(){
var href = jQuery(this).attr("href");
jQuery(this).attr({ href: "#"});
jQuery(this).click(function(){
jQuery("#contenido").load(href);
});
});
});
</script>
<script type="text/javascript">
jQuery.noConflict()
jQuery(document).ready(function(){
jQuery("#MenuBar1 a").each(function(){
var href = jQuery(this).attr("href");
jQuery(this).attr({ href: "#"});
jQuery(this).click(function(){
jQuery("#contenido").load(href);
});
});
});
</script>
<script type="text/javascript">
jQuery.noConflict()
jQuery(document).ready(function(){
jQuery("#productos a").each(function(){
var href = jQuery(this).attr("href");
jQuery(this).attr({ href: "#"});
jQuery(this).click(function(){
jQuery("#contenido").load(href);
});
});
});