10 examples of 'jquery set title' in JavaScript

Every line of 'jquery set title' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
435function setTitle(target, param) {
436 if (!param || !(param.which || $.isNumeric(param.which)) || !param.title) { return; }
437 var t = $(target), tab = t.tabs("getTab", param.which);
438 tab.panel("setTitle", param.title);
439};
79function setTitle(title) {
80 document.getElementById('summary-header').textContent = title;
81}
14function setTitle(title) {
15 document.getElementById("pageTitle").textContent = title;
16}
12function set_title(title){
13 document.title = title;
14
15 if(frameElement){
16 frameElement.$window.title(document.title);
17 }
18}
142function change_title(new_title) {
143 $("#header-title").html(new_title);
144}
155function modalSetTitle(modal, title='') {
156 /* Update the title of a modal form
157 */
158 $(modal + ' #modal-title').html(title);
159}
234Modal.prototype.setTitle = function setTitle(title) {
235 var $h3 = this._$header.find("h3");
236 $h3.empty();
237 $h3.append(title);
238};
162ItemSelection.setTitle = function setTitle( title )
163{
164 this.ui.find('.head .text').text( title );
165};
18function setTitle(title) {
19 $.alertDialog.setTitle(title);
20}
8function updateTitle() {
9 $(document).attr("title", "NEW REQUEST!!");
10 setTimeout(function () { $(document).attr("title", "MMock Console"); }, 2000);
11}

Related snippets