En los enlaces puedes usar por ejemplo:
1 |
<a href="{page_url}" target="_parent"> |
También desde javascript por ejemplo:
1 |
<script> window.top.location.href = "'.$GLOBALS['tpl_host'].'?auth=true";</script>'; |
Una de las formas de cargar para que funciones las acciones que tengas y que al cargar con jquery load no te funcionen.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
function jq(){ //// HOVER DIV INFO ////// $('.link_datos').hide(); $('.datos').hover(function() { $(this).children('.link_datos').show(); }, function() { $(this).children('.link_datos').hide(); }); /// HOVER DIV INFO /////// } $("#consulta").load('index.php?p=all_reservas&borrar_sessiones=1', function(){ jq(); }); |