ex: onload -> para quando a tela carregar
onclick -> quando clicarem no elemento
Are there any that just show?
ex: onload -> para quando a tela carregar
onclick -> quando clicarem no elemento
Are there any that just show?
function fazerAlgo()
{
//código aqui
}
// em alguma parte do seu código mais tarde...
fazerAlgo();
No HTML:
<script src="minhafuncao.js"></script>
<div id="">Em alguma parte do seu html</div>
<script>fazerAlgo();</script>
In your own question is one of the alternatives: no onload
.
If you do not want to call the function through a direct action user (eg click Explicit , either during page loading, simply calling the function after the function code:
<script>
function minhaFuncao(){
...
}
minhaFuncao();
</script>
Or after page load:
<script>
function minhaFuncao(){
...
}
window.onload = minhaFuncao;
</script>
There are several Listener's that can be used, some examples and ways of application with pure JavaScript:
document.addEventListener('click', suaFuncao(), true); // No Clique
document.addEventListener('load', suaFuncao(), true); // No load
document.addEventListener('resize', suaFuncao(), true); // No Resize
and to apply them let's suppose, in the click:
const btn = document.querySelector('classe ou id do seu botao');
btn.addEventListener('click', suaFuncao(), true);