Customizing Analyzer Using Static Divs
List of Available Divs
Toolbar Div
<div class="reportBtn" id="analyzer-custom-btn"></div>
Code Sample:
<script type="text/javascript">
function changeText(text)
{
elem = document.getElementById('analyzer-custom-btn');
elem.innerHTML = "My New Button";
}
</script>
Last updated
Was this helpful?

