Threaded View
-
18 Jul 2012 4:36 AM #26
Untitled title on window.open
Untitled title on window.open
For browsers based on WebKit engine when print window opened the title of window has value "Untitled". Fix it for safari you can swap this code:
on this:Code:var win=window.open('','printgrid');
For Chrome this solution fixes problem not fullyCode:var win=window.open('about:blank','printgrid');


Reply With Quote