No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
I’m simply me and that is all I need to be. If I liked your status or comment on Facebook that means you have entertained me.
6 Posted Topics
I've this code for my AJAX script $(document).ready(function() { $("#submit").click(function(){ var acc = $("#accountNumber").val(); src = "pass.php"; $.ajax({ url: src, data: 'action=account&type=viewDetail&accNo='+acc, cache: false, type:'GET', success: function(data, textStatus, XMLHttpRequest){ if(data!=0) { // alert(data); $("#userInfo").html(""); $("#userInfo").css("display","block"); $("#userInfo").append(data); }else { $("#userInfo").html(''); $("#userInfo").append('<span class="alert-red alert-icon">Please Enter correct Account Number.</span>'); $("#userInfo").css("display","block"); } }, error:function(XMLHttpRequest, … | |
I'm working on a School's fee management module. The client's requirement is: 1. There are 6 types of fee to be paid: * Annual Fee * Tuition Fee * Exam Fee * Games Fee * Development Fee * Other Charges 2. Only tuition fee will be paid monthly and rest … | |
I'm working on a project where I've to display whether a certain domain name is available or not. If the domain name is unavailable, user may choose to view `WhoIs` information, which I've to show. How can I do this in PHP? | |
I want to work on an antivirus software program. But, what should I know first to dig? | |
Re: There is no main() method in the code. How could be executed as t also doesn't have any applet or frame used. Please recheck your code and re-submit. | |
How could i simulate the SJF(Shortest Job First) CPU Scheduling in Java? |
The End.