障害メモ/jQueryでタイトルタグが書き換えられない
関連
- jQuery
現象
jQueryでタイトルタグが書き換えられない(ただしIEのみ。)
次のどちらもエラー「unexpected call to method or property access」になる
$('title').html('ほげ');
$('title').text('もげ');
原因
不明。
対策
仕方がないのでJavaScript生のメソッドを使う。
window.document.title = 'ふが';
参考
- http://www.rachaelarnold.com/dev/archive/the-title-element-and-jquerys-text-function
作成日 2013-08-17
