Replace Text In <title></title>

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


ADVERTISEMENT

Change The Title Bar Of My Site Every X Seconds To A New Title?

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

JQuery :: Replace Content With Title Attribute Value?

Jun 12, 2009

<span class="date" title="May 14, 2009">14 May 2009</span> and I'd like JQuery script to output it as this:<span class="date" title="">May 14, 2009</span> Basically, I'm checking the browser language and I want to display all dates in US date format to all users with EN-CA and EN-US browser language (and UK format to all other users). Please let me know if there is a better way of doing it, I couldn't find anything.

View 2 Replies View Related

JQuery :: Replace The Default Tooltip Of All Title Elements?

May 4, 2009

I need different definitions of tooltip on one page: 1/ Replace the default tooltip of all title elements

$('*[title]').tooltip({
delay: 500
});

AND

2/ Replace only Title elements within class "fast" (e.g. <a class="fast" href="..." title="fast tooltip">Fast</a> )

$('*[title].fast').tooltip({
delay: 0
});

But first definition overrides the second one all the time. I moved "general" definition 1/ on the first position of js and the "class based" 2/ on the last one but no success.

View 3 Replies View Related

Jquery :: Using Qtip To Replace ALL Title Attributes On A Page?

Feb 1, 2009

If there a way to have all title attributes become qtips? Right now I'm just going through and finding all the tags that need to be done but this is slow and not reliable.

[Code]...

View 8 Replies View Related

Get IFRAME <head><title>header Title</title><head>... Not <iframe Title="" >

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

Alternate The <title> Between Original And New Title

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

JQuery :: Get Only The Text Between The Tags <title>?

Jul 22, 2009

I have an HTML text with text and tags I'd like to get only the text between the tags <title> Then I have this:

<body>
start text
<title>Text to get</title>
end text
</body>

i'd like to have this result ONLY: "Text to get"

View 2 Replies View Related

Use Variables For The Title Instad Of Text?

Jul 21, 2010

<span title="this is the title">....</span> I need to use variables for the title instad of text.

View 3 Replies View Related

Storing Text In Title Attribute

Nov 26, 2011

I was having difficulties storing text in the title attribute when it contained special characters.My workaround was to use escape/unescape.Is this the best way to resolve this?Why is it okay to include special characters in the alert function (i.e. Doesn't work), but not in the title attribute?

View 3 Replies View Related

Pop-up With Location=0 Causes Url To Appear In Title Bar

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

How To Get Page Title?

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

Window Title

Dec 15, 2006

how (if) can i from javascript code set window's title ? (on the top bar)

View 1 Replies View Related

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 View Related

Title In Select

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

Change Title

Jul 20, 2005

How do you change the title within <title> and </title> by JS?

View 5 Replies View Related

JQuery :: Get The Title Of The Url?

Feb 17, 2010

How can i get the page title and page description of the url using jQuery?

View 1 Replies View Related

Getting Options Title

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

Add Icons To The Title Bar?

Sep 4, 2009

I want to know how to add icons to the title bar

View 2 Replies View Related

Title In Alert Box

Oct 25, 2006

Is there a way to title the alert box in javascript??

View 3 Replies View Related

How To Get Iframe Title

Sep 5, 2011

Is it possible, and if so how, to get iframe title

how to the master page take the same title iframe which content

ex : master page any title

&

iframe page by title " Good sit "

How the master page take title iframe page " Good sit "

View 1 Replies View Related

Popup Window Title

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

URL Display In Title Bar UNWANTED

Jul 23, 2005

I don't know if it was some kind of "upgrade" in a recent Windows SP but, I now have a problem...When ever I have JavaScript open a new window the URL is displayed in the title bar prior to the title, this is really just an aesthetic problem but seems to be fixed if I set the new window property of location to yes, but I then get an ugly url title bar in my new window. Does anyone know how to disable that "feature" or even what I am talking about. It just annoys me.

View 2 Replies View Related

Show Title Without Mouseovering On It.

Feb 3, 2006

i am changing the title of a span. what i want to also do is, as soon as i change the title of the span, i want to display that title without moving my mouse over it. i am trying to do this through javascript.

View 3 Replies View Related

Getting Document Title From Iframe

Jun 12, 2007

I want to be able to get title of a document that is presented within an Iframe with the id "popupFrame". There may be more than 1 instance of the iframe in the page.

var elementCount = document.all("popupFrame").length;
for (var i = 0 ; i < elementCount ; i++)
{
alert("src = " + document.all("popupFrame",i).src);
alert("title = " + document.all("popupFrame",i).document.title);
}

But the wierd thing is that the title is always the title of the document that contains the Iframe. NOT the title of the document conatined within the Iframe. At least in IE7 which is all that I have tested it with so far.

View 3 Replies View Related

Can I Use Js To Fetch Title Of Remote Url?

Jul 20, 2005

I know javascript has no local or server based access to the disk however I
was wondering if one can read a remote page and take its html <TITLE>
value...

My guess is no but thought I'd check/ask anyway...

View 6 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved