Posts by Eu Kaique • 63 points
3 posts
-
0
votes2
answers383
viewsA: Jquery Focus() in Firefox
It worked that way: classe.blur(function () { var componente = $(this); if (!DtValida(this.value)) { MsgAlerta("Data inválida."); componente.val(""); setTimeout(function () { componente.focus(); });…
-
2
votes2
answers383
viewsQ: Jquery Focus() in Firefox
Good morning, I have a problem with firefox. I have a methods that clears an input with a value I consider invalid ai in the sequence I give Focus to that input. In Internet Explorer and Chrome it…
-
4
votes1
answer315
viewsQ: SQL Server CHAR and VARCHAR
I understood the difference between CHAR and VARCHAR. If I want to insert in a field VARCHAR(10) the word 'house', that word in the bank will take 4 bytes. If I want to insert in a field CHAR(10)…