remove <br> from specific div
jquery
Solution
$('#grape1,#grape12').find('br').remove();
Problem
I need to remove break from a specific `div`, i know how to remove all breaks with `$('br').remove();` But I need to keep some breaks elsewhere on the page , How would I remove the breaks from a `div` with the id "grape1" and "grape12" but leave all others intact?