Я хочу прокрутити прапорець групи 'locationthemes' і побудувати рядок з усіма вибраними значеннями. Отже, коли встановлені прапорці 2 та 4, результат буде: "3,8"
<input type="checkbox" name="locationthemes" id="checkbox-1" value="2" class="custom" />
<label for="checkbox-1">Castle</label>
<input type="checkbox" name="locationthemes" id="checkbox-2" value="3" class="custom" />
<label for="checkbox-2">Barn</label>
<input type="checkbox" name="locationthemes" id="checkbox-3" value="5" class="custom" />
<label for="checkbox-3">Restaurant</label>
<input type="checkbox" name="locationthemes" id="checkbox-4" value="8" class="custom" />
<label for="checkbox-4">Bar</label>
Я перевірив тут: http://api.jquery.com/cked-selector/, але немає прикладу, як вибрати групу прапорців за її назвою.
Як я можу це зробити?