title

jquery: hide title attribute but not remove it

Hi, I have seen that most people will do it with this solution that on mouse over, we will grab the value in the TITLE attribute, then, remove its value. While on mouse out, we'll put it back on. $(this).attr('title',''); or $(this).removeAttr('title'); I want to know is it possible just hide the tooltip from appearing than remo...

SEO title vs alt vs text

Hello everybody! Does the title attribute in a link do the job of the real text in the link for SEO? i.e <a href="..." title="Web Design">Web Design</a> is it the same as: <a href="..." title="Web Design">click here</a> when trying to get a good page rank for keywords like "web design"? is it like alt attribute in an image tag? or ...

SEO alt vs text

I have 2 questions: 1 - Is there a difference in SEO between inbound links from the same site (from pages belonging to the same domain), and inbound links from other sites? are they the same value? 2 - is there a difference in SEO between (1) an inbound link with text inside it and (2) an inbound link with an image which contains an "a...

How to resize callout bubble after resetting title/subtitle

Hi all, I created an MKAnnotation name PushPin which has a title and subtitle. I want to be able to dynamically change the title at a later time. I'm close so I'd rather not have to make a whole new AnnotationView, but if I have to I guess that's ok too. My problem is that, once I change the text for the title, the window does not re...

How to change gnome-terminal title in Ubuntu 10

I've tried setting my PROMPT_COMMAND variable: PROMPT_COMMAND='echo -ne "\033]0;"myWindowTitle"\007"' but something changes my tab (or the whole terminal title) to 'user@hostname:/current/path', thus PROMPT_COMMAND='echo -ne "\033]0;"myWindowTitle"\007" && sleep 3' changes title for 3 second only :) ...

How to add a simple title in a menubar without creating a new page in Wordpress?

Hello, I have a question about my wordpress style.css. I tried to find the answer for hours now but i don't know how to describe it in a few words...Although it seems really simple. In my leftsidebar i have different pages. Now i want to add some new catagories/titles in the menu! So i don't want it to be a "button" but just a word......

how add title and meta tags for content pages in a project base on master and content page(dynamically)

how can i add title and meta tags for content pages in a project base on master and content page(dinamically) ? i used the blow method for master page : public void SetMetaTags(string title, string description, string keywords) { // Get a reference to the HTML Head HtmlHead headTag = (HtmlHead)Page.Header; // Set the page...

I cannot select <title> tag in Atom XML using jQuery.

I get Atom data through Ajax using jQuery. I write $(xhr).find('entry id').eq(0).html(); is OK. But $(xhr).find('entry title').eq(0).html(); can not select anything. title tag is actually exist. Please help. Thank you! ...

I cannot select <title> tag in Atom XML using jQuery.

I get a Google Picasa web albums' atom data through Ajax using jQuery. This atom data looks like this: http://code.google.com/apis/picasaweb/docs/2.0/developers_guide_protocol.html#ListAlbums When I write $(xhr).find('entry id').eq(0).html(); it is OK. But $(xhr).find('entry title').eq(0).html(); does not select The <title> ta...

Android SDK sample app question:

If you go into the standard Note pad accessory application, the first available note menu entry is going to be... <untitled> My question is this: Where is "<untitled>" coming from in the code? The code is in the NotePad sample in the SDK if you want to built a project from existing source real fast. I just can't find where "<unti...

Customizing a script to extract titles from Tumblr post (stripping HMTL tags from text input)

Okay, I' not an expert in PHP (I'm really just beginning to grasp the thing) and I need a little help to customized a script for extracting titles from Tumblr's post (and I insist, it's a small problem, I'm not asking for the whole script to be written for me). For those who doesn't know: Tumblr is a microblogging platform with the ch...

MATLAB: Setting window/picture title

I have: img = imread('pic.jpg','jpg'); r = img(:,:,1); g = img(:,:,2); b = img(:,:,3); figure, imshow(r); figure, imshow(g); figure, imshow(b); How to set title over each picture? ...

Is there a way to make the Title part of a Custom Dialog Box invisible?

Just a simple problem without any idea of how to do it. Does anyone know how/if this can be done? Reason: I just want one solid dialog box with no partitions as it looks a little better in my application. EDIT public void showCustomDialog() { Dialog dialog = new Dialog(this); dialog.setContentView(R.layout.customdialog); ...

How do I test the title of a page from an RSpec view spec?

I'm learning RSpec 2 with Rails 3. In order to set the contents of the tag in the layout for each page, I have a helper that can be used to set the title and then return it: def page_title(subtitle=nil) if @title.nil? @title = ["Site Name"] end unless subtitle.nil? @title << subtitle end @title.reverse.join " - " en...

Setting shadow color for the title of UIButton in the nib

Hi, I am developing a simple iPhone application. I want to set the shadow color for the title of a UIButton in the nib. Can someone help me in finding the set shadow color for the title in the nib? Thanks and Regards, Deepa ...

How can i Change my java swing application title in Mac OS X title bar ?

Hello , My Swing Java application works fine on Mac OS X, but its title in Mac's title bar appears like this "org.classes.MainClass" which is the main class's path of my application. Can i change this title through code or in the Manifest file of my java application ? ...

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? jQuery('.tooltip').each(function(){ $(this).data('title',$(this).attr('title')); $(this).removeAttr('title'); jQuery(this).hover(function() { too...

Dynamic title in php

I am Trying to get the page title (<title>bla..bla..bla..</title>) to be changable in php with a multi-file layout like so: Functions.php is included into index.php, then get_header() is called from functions.php to include the page header.php the title tag is inside the header file. I would like to be able to set the title from index.ph...

Change font of UINavigationController title

Can I change the font of my UINavigationController? --> title ...

Hidding the title bar on specific layouts that use ViewFlipper, and transitions not working properly.

First off I am a beginner in Android development; I have been doing a lot of research into how to get the various tasks I am trying to complete. I have yet to find any similar issue to this, which is why I am asking it. This is a multipart question. Overview of program and problems: I have a program (for Android 2.1 and higher) that ha...