The jQuery code is like:
var $seatdiv = $('<div id = "seat'+i+'" class="seat-class"></div>')
.css({left: leftValue + 'px', bottom: bottomValue + 'px'});
I tried to add this "bootstrap" code, but it is not working:
$seatdiv.popover({content:row_label+" "row_name+" " +column_label+ " "+column_name});
Who can tell me how I should write these code together? Cheers.