Skip to main content

Posts

On Change Event in JQGrid

colModel:[ {name:'countryName',index:'countryName',width:100,editable:true,edittype:"select", editoptions:{value:countrylist, dataEvents :[                                                             { type: 'change', fn: function(e)                                                                 {                                                                     var thisval = $(e.target).val();                                                                     $.get('state.htm?id='+thisval,                                                                                       function(data)                                                                     {                                                                         var res = $(data).html();                                                                         $("#stateName").html(res);                                                                     })

Passing data to the Server

Many times you collect input from the user and you pass that input to the server for further processing. JQuery AJAX made it easy enough to pass collected data to the server using data parameter of any available Ajax method. Example: This example demonstrate how can pass user input to a web server script which would send the same result back and we would print it: <html> <head> <title>the title</title> <script type="text/javascript" src="/jquery/jquery-1.3.2.min.js"></script> <script type="text/javascript" language="javascript"> $(document).ready(function() { $("#driver").click(function(event){ var name = $("#name").val(); $("#stage").load('/jquery/result.php', {"name":name} ); }); }); </script> </head> <body> <p>Enter your name and click on the button:</p> &l

Getting JSON data

There would be a situation when server would return JSON string against your request. JQuery utility function getJSON() parses the returned JSON string and makes the resulting string available to the callback function as first parameter to take further action. Syntax: Here is the simple syntax for getJSON() method: [selector]. getJSON( URL, [data], [callback] ); Here is the description of all the parameters: URL: The URL of the server-side resource contacted via the GET method. data: An object whose properties serve as the name/value pairs used to construct a query string to be appended to the URL, or a preformatted and encoded query string. callback: A function invoked when the request completes. The data value resulting from digesting the response body as a JSON string is passed as the first parameter to this callback, and the status as the second. Example: Consider the following HTML file with a small JQuery coding: <html> <head> <

Loading simple data

This is very easy to load any static or dynamic data using JQuery AJAX. JQuery provides load() method to do the job: Syntax: Here is the simple syntax for load() method: [selector]. load( URL, [data], [callback] ); Here is the description of all the parameters: URL: The URL of the server-side resource to which the request is sent. It could be a CGI, ASP, JSP, or PHP script which generates data dynamically or out of a database. data: This optional parameter represents an object whose properties are serialized into properly encoded parameters to be passed to the request. If specified, the request is made using the POST method. If omitted, the GET method is used. callback: A callback function invoked after the response data has been loaded into the elements of the matched set. The first parameter passed to this function is the response text recieved from the server and second parameter is the status code. Example: Consider the following HTML file with a s

jQuery Hello World example

This section we are going to create our first jQuery application called "Hello World jQuery". This application will simply display " Hello World !! (display due to jQuery)" message in browser. After completing the example you will be able include the jQuery library in your application and use it to do simple functions. Let's start developing the Hello World application in jQuery. Setting up jQuery When you click on the following link it will open a page containing jQuery library script. This file is around 70kb.You need to save this as "jquery-1.4.2.js". Now we are ready to use jQuery inside your html page. Hello World Example(HelloWorld.html) <html> <head> <title>jQuery Hello World</title>   <script type= "text/javascript"  src= "jquery-1.4.2.js" ></script>   </head>   <script type= "text/javascript" >   $ ( document ) .ready ( function (){

How To Make Jquery Ajax Call

This is my first blog post when I just started working on the Web Development. I had to call a Web Service in an HTML page to display the data on the screen. I googled and found multiple Ajax call examples but didn't find a simpler one to get started with. So, I created one myself so that I can refer it as and when needed. Check it out if that helps you as well:      $.ajax({           type: "POST",           url: "test.htm",           data: "param1=value1&param2=value2",           success: function() {                // code to execute after the ajax call succeeds           },           error: function() {                // code to execute after the ajax call fails           }      }); Here,      type:- is the request type i.e Get/Post/Put/Delete      url:- is the url of the web service or the request      data:- is used to send the parameters along with the request      success:- is the callback function which triggers after the request returns