What does ampersand mean in a selector name?

Jacksonkr

How can I retrieve $(".q&a"); ?

Chrome is telling me: Error: Syntax error, unrecognized expression: .q&a

I've tried "q\&a" and "q&a" with no success.

Jacksonkr

Figured it out at the end of writing the question. Hope this helps someone else.

$("q\\&a");

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

What does this ampersand mean in C?

From Dev

What does "no selector" mean?

From Java

What does the ampersand (&) mean in a TypeScript type definition?

From Java

What does &. (ampersand dot) mean in Ruby?

From Dev

What does |& (vertical bar, ampersand) mean in bash?

From Java

What does an escaped ampersand mean in Haskell?

From Dev

What does the double ampersand return type mean?

From Dev

What does the ampersand mean in a Rust type?

From Dev

What does an ampersand (&) mean in the Swift language?

From Dev

What does the ampersand in 'cat &' mean in linux?

From Dev

What does the & mean in an scss selector?

From Dev

What does ampersand mean at the end of a shell script line?

From Java

What does T&& (double ampersand) mean in C++11?

From Dev

What does ampersand mean at the end of a shell script line?

From Dev

What does "ampersand operator" mean between a class and a variable?

From Dev

Use ampersand in selector name with SASS

From Dev

Use ampersand in selector name with SASS

From Dev

What is the mean of the ampersand symbol(&) in this sentence?

From Dev

What is the mean of the ampersand symbol(&) in this sentence?

From Dev

What does 'true' mean in a jQuery selector?

From Java

What does the "+" (plus sign) CSS selector mean?

From Java

What does "i" mean in a CSS attribute selector?

From Dev

What does $(selector)[0] mean in jQuery?

From Dev

What does nested bracket mean in jquery selector?

From Dev

What does a file with name ! mean?

From Dev

what does "if (<name of a function>)" mean?

From Dev

What does "&:name" mean in Ruby

From Dev

What does %% mean in a function name?

From Dev

In jQuery, what does `this.selector` mean in `$(document).on('click', this.selector, ...)`?

Related Related

  1. 1

    What does this ampersand mean in C?

  2. 2

    What does "no selector" mean?

  3. 3

    What does the ampersand (&) mean in a TypeScript type definition?

  4. 4

    What does &. (ampersand dot) mean in Ruby?

  5. 5

    What does |& (vertical bar, ampersand) mean in bash?

  6. 6

    What does an escaped ampersand mean in Haskell?

  7. 7

    What does the double ampersand return type mean?

  8. 8

    What does the ampersand mean in a Rust type?

  9. 9

    What does an ampersand (&) mean in the Swift language?

  10. 10

    What does the ampersand in 'cat &' mean in linux?

  11. 11

    What does the & mean in an scss selector?

  12. 12

    What does ampersand mean at the end of a shell script line?

  13. 13

    What does T&& (double ampersand) mean in C++11?

  14. 14

    What does ampersand mean at the end of a shell script line?

  15. 15

    What does "ampersand operator" mean between a class and a variable?

  16. 16

    Use ampersand in selector name with SASS

  17. 17

    Use ampersand in selector name with SASS

  18. 18

    What is the mean of the ampersand symbol(&) in this sentence?

  19. 19

    What is the mean of the ampersand symbol(&) in this sentence?

  20. 20

    What does 'true' mean in a jQuery selector?

  21. 21

    What does the "+" (plus sign) CSS selector mean?

  22. 22

    What does "i" mean in a CSS attribute selector?

  23. 23

    What does $(selector)[0] mean in jQuery?

  24. 24

    What does nested bracket mean in jquery selector?

  25. 25

    What does a file with name ! mean?

  26. 26

    what does "if (<name of a function>)" mean?

  27. 27

    What does "&:name" mean in Ruby

  28. 28

    What does %% mean in a function name?

  29. 29

    In jQuery, what does `this.selector` mean in `$(document).on('click', this.selector, ...)`?

HotTag

Archive