Pop-up Window Title Bar
May 24, 2007
i am bringing up a pop-up using
window.open("popupurl","popupname",details);
now when i use this both in IE and FF, the title of the pop up
includes my ip address as http://1.1.1.1:8080 - Popup title -
Microsoft Internet Explorer.
so my question is how can i hide my host information showing up....
View 1 Replies
ADVERTISEMENT
Jul 23, 2005
I'm opening a window with a SWF inside (no HTML, just the SWF) but in the
title bar appears something like
http://www.server.com/myDir/myWeb/Flash/myFlash.swf
i'd like to write something like "Wow!! look thos flash!!!".
Could I do that from the function who launch it??? with something like this?
myWin.title = 'Hello world!!!'
View 3 Replies
View Related
May 30, 2007
I need to open a new window from an existing HTML page to a site in
which we do not want to show the address for. I have set the titlebar
to no but it will still place the title on the titlebar Here's my
function code:
function myOpen()
{
window.open("http://
www.somewhere.com","mywindow","location=no,titlebar=no");
}
I am calling it by the following line:
<img src="art.gif" onclick="myOpen()">
View 1 Replies
View Related
Dec 15, 2006
how (if) can i from javascript code set window's title ? (on the top bar)
View 1 Replies
View Related
Jul 23, 2005
Im using the code below to pop up a window: It works fine except for that in
the titlebar, my domain name is listed before the page title like below:
http://mydomain.com - MyPopupwindowname - Microsoft Internet Explorer
Is there any way to remove this or otherwise control what is displayed in
the titlebar? I just want it to display the page title - thats it. I dont
really care about the MSIE but I mainly dont want the domain to display.
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "',
'toolbar=0,scrollbars=1,location=0,statusbar=0,men ubar=0,resizable=1,width=520,height=500,left
= 245,top = 262');");
}
// End -->
</script>
<a href="javascript:popUp('MyWindow.asp')">Click Here</a>
View 2 Replies
View Related
Jul 25, 2005
i've a simple script that basically replaces the textnode attached to the title tag. and i thought since i'm updating the title tag the window title will automatically change. unfortunately it does not :(. what is wrong ?
function getText(txtMsg) {
if ( document.createTextNode ) {
return document.createTextNode(textMsg);
}
return false;
}
function setTitle(newTitle) {
var title = document.getElementsByTagName("title");
if ( title[0] ) {
title[0].replaceChild(getText(newTitle), title[0].firstChild);
}}
i know for sure this can be done coz gmail does that...but still wondering how else ??
btw i checked if this was getting updated to to DOM properly and it did that too
View 3 Replies
View Related
Apr 1, 2006
I created popup window but I would like to have this popup window without title bar. How to do that?
View 4 Replies
View Related
Apr 7, 2010
How do I get the parent window title and url in the iframe? JS code being in the iframe, not parent window.
View 1 Replies
View Related
Aug 8, 2006
I've got a link that launches a little AJAX application in a window.
Like this:
function launchListener()
{
var newWindow = window.open("listener.php", "newWindow",
"width=300,height=150");
}
Ideally, once this window is loaded, it will sit in the background and
wait for stuff to happen. I would like to then change the title bar to
denote changes. Simple enough, right?
Anyway, problem is: When the new window launches, its title is not
exactly what I assign it in "listener.php" (for instance, "Listener"),
but rather "http://155.55.55.55 - Listener" (or whatever). This means
that while sitting the taskbar, generally all the user is going to see
is a domain name and some dots, rather than what I want them to see.
View 3 Replies
View Related
Feb 24, 2009
how to rename/hide the title in the popup window. I found the below code from google. this code is working fine. Actualy I don't want to show the url to the user. Below code helps to hide the address bar. But still user can see the url in title bar. If I add the titlebar=no in the var feature then also it is showing the url in titlebar.
function loadMainWindow()
{
var win = window.self;
win.opener = window.self;
[Code]....
View 8 Replies
View Related
Feb 27, 2003
Is it possible to create a link to have a window pop up and not have the bar that has the title and minimize/maximize/close icons? If so, how could I do this?
View 2 Replies
View Related
Feb 14, 2011
I have some JavaScript that is being used to open a new window and display a PDF file. This is working fine apart from the title of the new window being open. I am using the window.open function and I have set the title of the page using the document.write function (see code below). The code works fine for FF and IE but for some reason Google Chrome just displays 'Untitled - Google Chrome'
<body>
<a href="javascript:openNewWindow();">Click Here</a>
<script type="text/javascript">
function openNewWindow()
[Code]....
Note: I have also tried adding - pdfWindow.document.title="Title"; - to the JavaScript, with no luck.
Is there anything specific that is required for Chrome or am I just missing something??
View 1 Replies
View Related
Aug 31, 2009
cannot get a new (picture) window to open in Firefox without the title and address bars (or anything else, just the image). IE shows just the title bar, with or without the code:
function newWindow()
{window.open('./pageaddress.html','winname','top=20,left=20,directories=0,titlebar=0,toolbar=0,location=0,status=0,menubar=0,scrollbars=no,resizable=no,width=400,height=350');}
</script>
The window opens fine, but always shows the address and title bars. I have read the W3 Schools options list (and other posts) and tried both 'no' and '0' as values, without any success. What am I missing and is there any way to make this work - it didn't even work in the W3 Schools 'try it yourself' test page!
I have seen some very nice 'slowly-opening' windows (increasing in size)
View 4 Replies
View Related
Aug 8, 2010
i would like to write a script which will change title of my opera window after opera completely loads web page.i have a working script:
Code:
// ==UserScript==
// @name loaded
// @namespace my
[code]....
View 4 Replies
View Related
Aug 8, 2011
This page: [URL] seems to indicate that it's possible, but it looks like it also pops up an alert window which would be annoying as hell. Is there a way to, say, once every minute change the title bar text?
You see I have a text file of rotating slogans that appear each time you reload a page on my site and someone suggested that having them change even when the page is already open might be fun. I thought I'd look into it and see if it's possible. The site is [URL]
I don't know enough about javascript to know if this is possible. I am fairly good at implementing and installing other people's code, though, and can usually make minor changes to tweak things.
View 42 Replies
View Related
Apr 4, 2009
so the story is that i using and IFRAME in my web site , and i want the main title of the document (which appears in the browser title bar) to be the title from the iframe 'page' . my English is not so good so i 'll give an example .
main.html page :
<head> <title> browser title <title><head>
<body> ... what ever ...
<iframe title="tag_title" id="content_iframe" name="cnt_iframe" src="ref.html" width=843 height=800 ....></IFRAME>
[Code]....
View 2 Replies
View Related
Apr 15, 2011
I am looking to use a similar method as facebook chat does, where it alternates between the original title text and 'friendsName has sent you a message!...'
how can I do this ?
View 3 Replies
View Related
Apr 2, 2009
At my day job, we use a cms that generates really terrible <title></title> tags that are killing our SE rankings.
Instead of taking the title of the piece of content and putting it in the title tags, it uses the name of the page template.
I first attempted this with jquery, but i'm looking for something that will basically just take <title>template name</title> and replace it with something friendlier.
i tried something as basic as:
Code:
<title>Homepage Template</title>
<meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR">
<meta content="Visual Basic .NET 7.1" name="CODE_LANGUAGE">
<meta content="JavaScript" name="vs_defaultClientScript">
[Code]....
View 3 Replies
View Related
Jul 23, 2005
I'm creating a pop-up (it's a timer for hotel guest broadband access) with
all attributes turned off. But becasue I have location set to 0 the damn url
keeps appearing in the title bar. This causes a major problem as the pop-up
displays a countdown in the titlebar that the user should be able to see
even when minimised and at present cannot because the url takes up all the
room. Code:
View 1 Replies
View Related
Sep 5, 2005
How do I use Javasript to get the <TITLE> element of a web page?
If anyone can supply a cross browser way (IE 5.5+, Firefox 1+), it is
most appreciated.
View 4 Replies
View Related
Jul 20, 2005
I have got this html, javascript code
<html>
<head>
function get()
{
alert(document.form1.xyz.value);
alert(document.form1.xyz.title);
return true;
}
</head>
<body>
<form method="get" name="form1" id=form1>
<table>
<tr>
<td><select id=xyz name=xyz onChange="javascript:get();">
<option value="-1">------ select a name-------</option>
</td>
</tr>
</table>
</form>
</body>
</html>
The first alert statement will print the value -1, i need to know if the 2nd
alert statement will print "-------select a name---------"?
Is there anything like title property exists, if so can you please correct
me on how to use it.
View 3 Replies
View Related
Jul 20, 2005
How do you change the title within <title> and </title> by JS?
View 5 Replies
View Related
Feb 17, 2010
How can i get the page title and page description of the url using jQuery?
View 1 Replies
View Related
Apr 21, 2006
I have an some options like this:
<option value="12345" title="Frank">Frank - 12345</option>
What I want to do, is get the title. I've tried this:
document.MyForm.MySelect.options[document.MyForm.MySelect.selectedIndex].title
That dosn't work. I'm just using the title attribute as a place to hold the information I need. Maybe there is another attribute that would work better for this? How can I get the contents of the attribute?
View 7 Replies
View Related
Sep 4, 2009
I want to know how to add icons to the title bar
View 2 Replies
View Related
Oct 25, 2006
Is there a way to title the alert box in javascript??
View 3 Replies
View Related