Click here to Skip to main content
15,891,136 members
Home / Discussions / JavaScript
   

JavaScript

 
GeneralRe: A question to dust_dex Pin
Hakan Bulut24-Mar-13 23:47
Hakan Bulut24-Mar-13 23:47 
GeneralRe: A question to dust_dex Pin
Hakan Bulut25-Mar-13 1:11
Hakan Bulut25-Mar-13 1:11 
GeneralRe: A question to dust_dex Pin
dusty_dex25-Mar-13 7:25
dusty_dex25-Mar-13 7:25 
GeneralRe: A question to dust_dex Pin
Hakan Bulut25-Mar-13 3:21
Hakan Bulut25-Mar-13 3:21 
GeneralRe: A question to dust_dex Pin
Hakan Bulut25-Mar-13 3:22
Hakan Bulut25-Mar-13 3:22 
GeneralRe: A question to dust_dex Pin
dusty_dex25-Mar-13 8:53
dusty_dex25-Mar-13 8:53 
GeneralRe: A question to dust_dex Pin
Hakan Bulut25-Mar-13 21:21
Hakan Bulut25-Mar-13 21:21 
GeneralRe: A question to dust_dex Pin
dusty_dex25-Mar-13 11:58
dusty_dex25-Mar-13 11:58 
Just letting you know what your errors here are. See my other post for new code.

do(q)


can't use expressions at the top of do loop *(q)*, just use
do {


z is not declared with var *and* initialised with a value. var z = 0;
z +=1; // z (undefined) +1 is still undefined


you don't need the { } braces for a single statement..
if(q==q) return q;

but, q==q just evaluates to true so you might as well have just written this
return q; // if (q==q) {return q;} 


I am not able to reply very quickly. On a training course for another 10 days. Be patient.

Please keep trying to write new code as it is easier for me to guess what you are doing. Smile | :)
"It's true that hard work never killed anyone. But I figure, why take the chance." - Ronald Reagan

That's what machines are for.

Got a problem?
Sleep on it.


modified 25-Mar-13 18:05pm.

GeneralRe: A question to dust_dex Pin
Hakan Bulut26-Mar-13 21:58
Hakan Bulut26-Mar-13 21:58 
GeneralRe: A question to dust_dex Pin
dusty_dex27-Mar-13 8:14
dusty_dex27-Mar-13 8:14 
GeneralRe: A question to dust_dex Pin
Hakan Bulut27-Mar-13 21:02
Hakan Bulut27-Mar-13 21:02 
QuestionNeed to read xml from HTTPS to HTTP Server Pin
satyam_8318-Mar-13 22:07
satyam_8318-Mar-13 22:07 
AnswerRe: Need to read xml from HTTPS to HTTP Server Pin
SoMad18-Mar-13 23:09
professionalSoMad18-Mar-13 23:09 
GeneralRe: Need to read xml from HTTPS to HTTP Server Pin
Marco Bertschi19-Mar-13 2:30
protectorMarco Bertschi19-Mar-13 2:30 
AnswerRe: Need to read xml from HTTPS to HTTP Server Pin
Marco Bertschi19-Mar-13 2:29
protectorMarco Bertschi19-Mar-13 2:29 
QuestionNeed to read xml from HTTPS to HTTP Server Pin
satyamshilpi18-Mar-13 21:45
satyamshilpi18-Mar-13 21:45 
AnswerRe: Need to read xml from HTTPS to HTTP Server Pin
Marco Bertschi19-Mar-13 2:29
protectorMarco Bertschi19-Mar-13 2:29 
AnswerRe: Need to read xml from HTTPS to HTTP Server Pin
dusty_dex19-Mar-13 8:59
dusty_dex19-Mar-13 8:59 
QuestionMoveMenuItems Pin
Dungas17-Mar-13 20:56
Dungas17-Mar-13 20:56 
AnswerRe: MoveMenuItems Pin
jkirkerx18-Mar-13 8:14
professionaljkirkerx18-Mar-13 8:14 
AnswerRe: MoveMenuItems Pin
Moykn2-Apr-13 2:32
Moykn2-Apr-13 2:32 
Questionhow to show unique number in the form ,and after submit when next time a user will enter it will show another unique number Pin
Member 824369316-Mar-13 2:18
Member 824369316-Mar-13 2:18 
AnswerRe: how to show unique number in the form ,and after submit when next time a user will enter it will show another unique number Pin
ZurdoDev19-Mar-13 2:20
professionalZurdoDev19-Mar-13 2:20 
QuestionHelp me with Jquery Pin
Nafiseh Salmani14-Mar-13 5:43
Nafiseh Salmani14-Mar-13 5:43 
AnswerRe: Help me with Jquery Pin
ZurdoDev15-Mar-13 11:04
professionalZurdoDev15-Mar-13 11:04 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.