$(document).ready( function() { var infoButton = document.createElement("button") infoButton.className = "btn btn-info" infoButton.innerText= "Information" infoButton.onclick =function() { alert("Welcome to NSW DPI SCIP! \n \n By default, files will download to your Downloads folder. The download may not appear in your browser's downloads bar."); }; $("#action-buttons")[0].appendChild(infoButton); });