vote up 3 vote down star

I am using some nested layouts in Ruby on Rails, and in one of the layouts i have a need to read in a string from a div and set that as the title of the document. What is correct way (if any) to set the title of the document?

<script type="text/javascript">
$(document).ready(function() {

    // ???

});
</script>
flag

5 Answers

vote up 10 vote down check

The following should work but it wouldn't be SEO compatible. It's best to put the title in the title tag.

    <script type="text/javascript">
      $(document).ready(function() {

        document.title = 'blah';

      });
    </script>
link|flag
Wouldn't any javascript-generated HTML be SEO incompatible? I'm pretty sure googlebot doesn't execute javascript... – Orion Edwards Oct 9 '08 at 19:39
vote up 5 vote down

Like this:

$(document).ready(function ()
{
    document.title = "Hello World!";
});

Be sure to set a default-title if you want your site to be properly indexed by search-engines.

A little tip:

$(function ()
{
    // this is a shorthand for the whole document-ready thing
    // In my opinion, it's more readable 
});
link|flag
You should post the shorthand thing as a new "Question" in itself. Useful! – MDCore Oct 7 '08 at 20:11
Not sure I understand you, MDCore. – roosteronacid Oct 7 '08 at 22:11
Jeff has suggested one uses stackoverflow for those technical tips that one might put on one's blog. I was suggesting posting the tip as a new question that you answer yourself. – MDCore Oct 8 '08 at 12:00
@MDCore: done: stackoverflow.com/questions/182630/… – roosteronacid Oct 8 '08 at 13:06
vote up 3 vote down
<script type="text/javascript">
$(document).ready(function() {

    $(this).attr("title", "sometitle");

});
</script>
link|flag
vote up 0 vote down

Ugh that was such an obvious answer. Should've known that. Thanks.

link|flag
Google is your friend: tr.im/912 – Andrew Hedges Oct 7 '08 at 20:41
vote up 1 vote down

I am using some nested layouts in Ruby on Rails, and in one of the layouts i have a need to read in a string from a div and set that as the title of the document.

The correct way to do this is on the server side.

In your layout, there at some point will be some code which puts the text in the div. Make this code also set some instance variable such as @page_title, and then in your outer layout have it do <%= @page_title || 'Default Title' %>

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.