Skip to content

Instantly share code, notes, and snippets.

@YusukeHirao
Created March 7, 2014 08:16
Show Gist options
  • Save YusukeHirao/9407468 to your computer and use it in GitHub Desktop.
Save YusukeHirao/9407468 to your computer and use it in GitHub Desktop.
jQuery `'#'` がセレクターになる場合気をつける。 ref: http://qiita.com/YusukeHirao/items/78f3c8c5354c4fbcc550
$(document).find('#');
$(document).filter('#');
$(document).not('#');
Error: Syntax error, unrecognized expression: #
$(document).find('#' + id); // => エラーになる
if (id) {
$(document).find('#' + id);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment