Interview have always been a nerve reaching experience. Everybody gets the jitters when it comes to interviews.Especially when you are a fresher and going to give an interview as developer. Relax! Don't Panic.Below are the best tips to help you land your dream job. ->Understanding the requirement Read the job descreption carefully. It is important to understand,what is expected from you and whether you fit in that given profile or not. Analysing your personal strength and weakness alongside helps in deciding how well the job suits you and how to approach the interview. ->Know the employer Study about the company where you are appearing for the interview Know their history their vision their objectives so that you are able to answer the questions on it. Research well on their future plans so that you are able to align with your job role and you can benifit them in the long term. ->Prepare well in advance You must be pr...
Why Study AJAX? If you want to learn : • Update a web page without reloading the page • Request data from a server - after the page has loaded • Receive data from a server - after the page has loaded • Send data to a server - in the background What is AJAX? AJAX stands for Asynchronous JavaScript And XML. AJAX is not a programming Language. Ajax just uses a combination of : A browser built-in XMLHttpRequest object (to request data from a web server) JavaScript and HTML DOM (to display or use the data) This is how AJAX works:- <!DOCTYPE html> <html> <head> <script> function tryAjax() { var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { document.getElementById("content").innerHTML = this...