Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

h1 with id of toptitle is dynamically created and I am not able to change it. It will have a different title depends on a page. Now when it is Profil, I want to change it to "New word" with jquery.

Changing only when it is Profile  

<h1 id="toptitle">Profil</h1>

to

<h1 id="toptitle">New word</h1>

Nore: If the text is Profil then change it to New word.

Any help will be appreciated. Thanks in advance.

share|improve this question

6 Answers

up vote 8 down vote accepted

Something like this should do the trick:

$(document).ready(function() {
    $('#toptitle').text(function(i, oldText) {
        return oldText === 'Profil' ? 'New word' : oldText;
    });
});

This only replaces the content when it is Profil. See text in the jQuery API.

share|improve this answer

Something like this should work

var text = $('#toptitle').text();
if (text == 'Profil'){
    $('#toptitle').text('New Word');
}
share|improve this answer

This should work fine (using .text():

$("#toptitle").text("New word");
share|improve this answer

Could do it with :contains() selector as well:

$('#toptitle:contains("Profil")').text("New word");

example: http://jsfiddle.net/niklasvh/xPRzr/

share|improve this answer
$('#toptitle').html('New world');

or

$('#toptitle').text('New world');
share|improve this answer

Pretty straight forward to do:

$(function() {
  $('#toptitle').html('New word');
});

The html function accepts html as well, but its straight forward for replacing text.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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