Hey Bubble fellows, i’m stuck in something. i’am create an plugin and i need that div have an fixed height and width, i try to put the code below on Intialize
function(instance, context) {
var div;
div = $('<div id="calendar"></div>') div.css({width: '1312px', height: '650px'}); instance.canvas.append(div) instance.data.div = div
}
But didn’t work. I trying to put an CSS on “header” and use the selector to select the id but still didn’t work! Give-me some advice, i’m feel that i don’t see small detail. Thanks to everyone!!