Posts by Jessica Paloma • 79 points
4 posts
-
2
votes0
answers60
viewsQ: What are binary, auto LF, auto Std and text download differences?
In Bitvise ssh, you have the upload and download mode options that are Binary, auto LF, auto Std and text. What are the differences between them ?…
-
0
votes1
answer406
viewsQ: Operator "?" in PHP, what is it for?
I’m studying php, I took a code to move and I’m not finding reference to the question mark in php, which serves in the example below, for what it serves. $dinheiro = $debito <= 1 ? FALSE : TRUE;…
phpasked Jessica Paloma 79 -
1
votes2
answers931
viewsQ: Why doesn’t my javascript work?
Why doesn’t it work ? I’m a few minutes trying to understand and follow the code: //funçao de document write var mostra = function (frase){ document.write(frase) }; // pegar elemento var pegaNome =…
javascriptasked Jessica Paloma 79 -
2
votes1
answer8435
viewsQ: Uncaught Referenceerror: $ is not defined
Where did I go wrong? form test <script type="text/javascript" > $(document).ready(function(){ $('#meuForm').validate({ rules:{ nome:{ required: true }, email:{ required: true },…