Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~222 People Reached
Favorite Forums
Favorite Tags
Member Avatar for willfindavid

Problem with javascript code in Mozilla firefox. [CODE]//Initial Code block PhaseID = cboPPPhase.options[cboPPPhase.selectedIndex].value; WorkflowRequest(PhaseID); //The function function WorkflowRequest(PhaseID) { //This is Ajax code block Http.get({url: "../ajax/Process.aspx?PhaseID=" + PhaseID , asynchronous:false, callback: WorkflowRequest_callback}); } //The callback function function WorkflowRequest_callback(Result) { if (Result.readyState==4) { if (Result.status==200)// if "OK" { WorkflowProcessResult(Result); } } …

Member Avatar for Thirusha
0
104
Member Avatar for willfindavid

I have a function like this .. [CODE] function1() { if ( valuecboOrganization =="2" ) { alert(valuecboOrganization); fnGetDepartmentRequest(valuecboOrganization); return; } } function fnGetDepartmentRequest(organizationid) { debugger; Http.get({url: "../ajax/Process.aspx?organizationid=" + organizationid , asynchronous:false, callback: fnGetDepartmentRequest_callback}); } [COLOR="Red"]function fnGetDepartmentRequest_callback(Result)[/COLOR] { debugger; if (Result.readyState==4) { if (Result.status==200)// if "OK" { fnGetDepartmentRequestProcess(Result); } } } …

Member Avatar for willfindavid
0
118