0
votes
0answers
48 views

History.js the title doesn't work?

I am having a problem with my title displaying in history.js. I am using a wordpress site and I implemented this script history.js, everything is working perfectly but the title doesn't. I noticed ...
0
votes
2answers
34 views

Setting Page Title Through $.GET JSON

Morning People I have a ajax heavy site. I have read blogs and articles on how they set the page Title when ajax calls. From what I know, they made another request to the server to request for the ...
0
votes
1answer
43 views

Get title of external webiste

I have a website with multiple links which lead to external websites. Now I want to get the links of the one the user selected. This is normally not allowed, I know (cross domain policy), but I have ...
1
vote
2answers
36 views

Dynamic document.title using a $_SESSSION variable

I have a page that uses ajax to show users their current assignments. Instead of having to refresh the page to see if there are any updates, I'm using ajax to update the data every 4 seconds. It's ...
0
votes
2answers
529 views

How to change page title of root page when loading ajax content?

I'm sure this is very simple, but I'm not getting it. I'm using the following AJAX script to load content from a particular div of an external page into a div of the same name on my root page. ...
0
votes
1answer
611 views

How do I dynamically change Content Editor web part title via jQuery?

I have a content editor web part that I want to dynamically change the title on mouse click. I tried using the .text() function, but it's not working :( Here's the sample of the page: The text I ...
1
vote
1answer
1k views

How would I replace the meta title, keywords and description on the ajax loaded html document?

How would I replace the meta title and description on the document with the meta title and description from an incoming html document on an ajax call?? I am calling new content from the #content div ...
0
votes
1answer
726 views

Smooth Scrolling & Dynamically Changing the Page Title

I currently have a site that changes the title of the page to reflect whatever song is currently being played. What I would like to do is have the title of the page constantly scrolling so the user ...
2
votes
5answers
701 views

How can I set the title of a cluetop tooltip from ajax callback when sticky: true?

I am using cluetip plugin which is great. I am populating the plugin using Ajax but I can't anywhere (in the documentation or examples) on how to set the title from an ajax callback. Is updating the ...
4
votes
2answers
223 views

Is there a more efficient way of displaying unread message number in page title?

Currently I use this... setInterval(function() { $.ajax({ url: 'data.php', success: function(data) { document.title = data;}, dataType: 'text' }); }, 15000); But it ...
-1
votes
3answers
128 views

How can I change the page title [duplicate]

Possible Duplicate: jQuery: how to change title of document during .ready()? How to change the name of the page with jquery and ajax? I would like to use php script and call the load ...
3
votes
3answers
393 views

How can remove Page Title set while loading Page via Ajax?

I am using Codeigniter 2 with modular extensions. I load all my pages via Ajax Jquery. I load page like follow: <a href="#Add Products" onclick="addProduct()> Add Product</a> In IE, ...
5
votes
4answers
3k views

Facebook like or share with dynamic document title

I found this problem all over the net but no answer yet, so maybe here someone solved it ...? I built a page relying heavily on jquery.address. It's got one index page and the rest loads dynamically ...
1
vote
1answer
376 views

AJAX (jquery) + Tooltip

I use an tooltip. When I hide the native browser function for the tooltip function, (remote Attr title), after an Ajax update there is no content at all! How can I fix this? ...
1
vote
1answer
2k views

Javascript / jQuery $.get(url) Title Parsing not Working

Even though the following works: http://jsfiddle.net/N7D5r/ My attempt at using the same code does not correctly get the titles. They return null, for whatever strange reason: <!DOCTYPE html ...