This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
textboxes = $("input, select, textarea"); | |
if ($.browser.mozilla) { | |
$(textboxes).keypress (checkForEnter); | |
} else { | |
$(textboxes).keydown (checkForEnter); | |
} | |
function checkForEnter (event) { | |
console.log(this); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
textboxes = $("input, select, textarea"); | |
if ($.browser.mozilla) { | |
$(textboxes).keypress (checkForEnter); | |
} else { | |
$(textboxes).keydown (checkForEnter); | |
} | |
function checkForEnter (event) { | |
console.log(this); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sdfdsfsd |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
/* | |
* selectArray | |
* @auth Anselmo Battisti | |
* @mail [email protected] | |
* | |
* @version 1.0 | |
* | |
* @example |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Sistema_Variavel | |
* | |
* @abstract Prover uma classe que abstraia algumas questões importantes | |
* e perigosas que surgem durante o desenvolvimento de sistemas web. | |
* | |
* A primera questão é sobre variáveis, elas podem ser passadas por POST, GET e | |
* por SESSION. Essa classe irá simplificar o acesso as mesmas através do | |
* método estático get. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Sistema_Variavel | |
* | |
* @abstract Prover uma classe que abstraia algumas questões importantes | |
* e perigosas que surgem durante o desenvolvimento de sistemas web. | |
* | |
* A primera questão é sobre variáveis, elas podem ser passadas por POST, GET e | |
* por SESSION. Essa classe irá simplificar o acesso as mesmas através do | |
* método estático get. |
NewerOlder