I have this code snippet:
$(function() {
$('.toolbar [id^=button]').on('click', function () {
$(this)
.css('background-color', '#559153')
.siblings("[id^=button]").css('background-color', '#88e885');
});
});
Firebug find an illegal char at the end. There is no char. How can i solve it?