Hi, How can I add extra content to this line? Current code: helper.parent = $('<div id="' + settings.id + '"><h3></h3><div class="body"></div><div class="url"></div></div>')
New code structure: helper.parent = $('<div id="' + settings.id + '"><div id="tooltip_content"><h3></h3><div class="body"></div><div class="url"></div></div></div>') I need this extra div to have more styling possibilities. As I'm using png graphics with shadow I need this extra div to put the background image there to prevent overlapping with the second bg image in #tooltip (overlapping causes ugly shadow at the moment). Any time I add something to this line the tooltip is not working anymore. So would be kind if you could help an js novice why this happens and how a workaround could look like? thx TC