I have the below html, how to apply the styling using span for the title attribute of the div. I applied a background color for the id 'tooltip-value' and it was not applied in this case, how to make it work?
Here is the jsfiddle link, http://jsfiddle.net/KendoDev/qtyL1rdm/
<div class="tooltip">
<div id='column1' title='<span id="tooltip-value">1</span>' style="width: 40px;">1</div>
<div id='column2' title="2" style="width: 20px;">2 </div>
</div>