I try to use highlight in jQuery but color works but border doesn't work.
How can I use the border? border: 2px solid #32a511
$("div").click(function () {
$(this).effect("highlight", {
color: '#effdeb', border: '2px solid #32a511'}, 3000);
});