1// To select multiple html element at once using jquery, follow the syntax below
2$("tagName1, tagName2, tageName3")
3// The above code will select "tagName1", "tagName2", tagName3
4
5
6// To select multiple element using "class name" follow the syntax below
7$(".className1, .className2, .className3, .className4")
8
9// To select multiple element using "id name" follow the syntax below
10$("#idName1, #idName2")