Is there a way to stop the onblur events until the whole page loads?
The events are inside a normal html form and look like this
<input disabled type="text" name="art_siglas" id="art_siglas" onblur="Guardar()" placeholder="Siglas para etiquetas" title="Siglas para la etiqueta" />
And they auto complete with jQuery using this without document ready:
$('#art_siglas').val('<?=$DMo["siglas"]; ?>');