I'm attempting to add a disclaimer pop-up to our Open Data hub. I added the below code to a Text Card per the instructions, but I'm not sure how to get it to pop-up on page load. Apparently javascript code isn't allowed on a Text Card. Has anyone been able to make something like this work on their data Hub?
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel">Commercial Purposes Disclaimer</h4>
</div>
<div class="modal-body">
(1) RCW 42.56.070(9) prohibits the release of l....
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">I Agree</button>
</div>
</div>
</div>
</div>