次のエラーが表示されます。
Uncaught SyntaxError: Unexpected token ILLEGAL
これは私のページの1行目に表示されています。
次のコードを使用しています。
$('.hollaBackClick').live('click', function(){
var currentElement = $(this);
var hollaID = currentElement.attr('hollaID');
var userID = currentElement.attr('userID');
var username = currentElement.attr('username');
var hollaBackBoxHTML = '<form id="hollaBackForm">' +
'<input type="hidden" name="hollaID" value="' + hollaID + '" />' +
'<input type="hidden" name="userID" value="' + userID + '" />' +
'<input type="hidden" name="username" value="' + username + '" />' +
'<textarea name="hollaBackContent" id="hollaBackContent" placeholder="HollardBack@' + username + '" />' +
'<input type="submit" name="hollaBackSubmit" id="hollaBackSubmit" value="HollaBack" />' +
'</form>';
currentElement.after(hollaBackBoxHTML);
});
私はウェブサイト全体でクリックイベントを使用していますが、これはエラーが発生する唯一の場所であり、問題の原因となっている可能性があることに少し困惑しています...