28 lines
625 B
JavaScript
28 lines
625 B
JavaScript
/*ver. 1.0
|
|
21-01-2015 versione jquery
|
|
*/
|
|
|
|
//alert("xx "+ $( window.parent.document ).prop('title'));
|
|
$( window.parent.document ).prop('title',document.title);
|
|
|
|
|
|
|
|
/*
|
|
//faccio il refresh del titolo della finestra
|
|
$('#parentPrice', window.parent.document).html();
|
|
if(ns4 || mz7 || chro)
|
|
{
|
|
//window.parent.frames[0].location.href=webApp+"/admin/menu/menuLeft.jsp";
|
|
|
|
|
|
//alert('mz4');
|
|
window.parent.document.title=document.title;
|
|
}
|
|
else
|
|
{
|
|
//var menuLeft=document.parentWindow.top.frames["left"];
|
|
//menuLeft.location.href=webApp+"/admin/menu/menuLeft.jsp";
|
|
document.parentWindow.top.document.title=document.title;
|
|
|
|
}
|
|
*/
|