Skip to content

Commit

Permalink
using-jquery-core/selecting-elements.md: ensured consistent teg repre…
Browse files Browse the repository at this point in the history
…sentation in content.

Closes gh-564

Formatted <select> in paragraph for :checked selector
  • Loading branch information
SoldierKB authored and Krinkle committed Apr 9, 2024
1 parent 5464c92 commit 6104267
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion page/using-jquery-core/selecting-elements.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ Much like the `:button` pseudo-selector, it's best to first select elements with

#### :checked

Not to be confused with *:checkbox*, `:checked` targets *checked* checkboxes, but keep in mind that this selector works also for *checked* radio buttons, and select elements (for select elements only, use the `:selected` selector):
Not to be confused with *:checkbox*, `:checked` targets *checked* checkboxes, but keep in mind that this selector works also for *checked* radio buttons, and `<select>` elements (for `<select>` elements only, use the `:selected` selector):

```
$( "form :checked" );
Expand Down

0 comments on commit 6104267

Please sign in to comment.