HOla, bueno en lo que me dijiste anteriormente me funciono, pero.....
Código HTML:
$(document).ready(function(){
$.post('home.php', function(data) {
$('#reprodMenu').html(data);
});
$.superbox.settings = {
boxId: "superbox", // Id attribute of the "superbox" element
boxClasses: "", // Class of the "superbox" element
overlayOpacity: .8, // Background opaqueness
boxWidth: "600", // Default width of the box
boxHeight: "400", // Default height of the box
loadTxt: "Loading...", // Loading text
closeTxt: "Close", // "Close" button text
prevTxt: "Previous", // "Previous" button text
nextTxt: " Next" // "Next" button text
};
$.superbox();
});
function cuadroBB(){
$.post('home.php',{ mode: "BB" },function(data) {
$.superbox();
$('#reprodMenu').html(data);
});
}// f fn
function cuadroNinos(){
$.post('home.php',{ mode: "NINOS" },function(data) {
$.superbox();
$('#reprodMenu').html(data);
});
}// f fn
el efecto $.superbox(); no funciona cuando doy click en la imagen y en index.php si...
que puede ser????