I have the following code.
<li class="source" data-toggle="tooltip" data-placement="top" id="content1" title="" data-original-title="Test">Test Server 1</li>
I'm trying to change the content of data-original-title using the following code:
document.getElementById('content1').style["data-original-title"] = 'Online';
Am I doing something wrong?