browser title

hi i hav a problem i just want to know how to change the browser title

Page 1 of 1

1 Replies - 3034 Views - Last Post: 18 October 2007 - 11:46 PM

#1 nikitasagar  Icon User is offline

  • New D.I.C Head

Reputation: 0
  • View blog
  • Posts: 1
  • Joined: 18-October 07

browser title

Post icon  Posted 18 October 2007 - 09:51 PM

from this javascript i hav called the jsp
<script language="Javascript">
function small_window(myurl) {
		var newWindow;
		var props = 'scrollBars=yes,resizable=no,toolbar=no,menubar=no,location=no,directories=no,width=450,height=450';
		newWindow = window.open(myurl, "Vanity_file_info", props);
	}
</script>

i just want to know how to change the tilte of the window i m basically working iin J2EE

Is This A Good Question/Topic? 0
  • +

Replies To: browser title

#2 Jayman  Icon User is offline

  • Student of Life
  • member icon

Reputation: 415
  • View blog
  • Posts: 9,532
  • Joined: 26-December 05

Re: browser title

Posted 18 October 2007 - 11:46 PM

Moved to Javascript.

To change the name of the browsers title then modify the second argument in the window.open function.
newWindow = window.open(myurl, "Browser Title Here", props);

Was This Post Helpful? 0
  • +
  • -

Page 1 of 1