I have a code that clicks on a button, but I want to do the same without jquery, since jquery makes my page very slow, like I do with javascript? this is the code:
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script>
$(document).ready(function()
setTimeout(clickbutton,5000);
function clickbutton()
{
$("#botonEnviar").click();
}
});
</script>