Follow Me:

Sunday, 30 November 2014

Contains() Property in javascript.,it is working fine in Mozila Firebox only.It will not support Chrome Browser,Internet Browser,Safari,Opera browser. Mozila Browser : var ClearFilterValue = 'family Schools'; if(ClearFilterValue.contains("family")== true) { alert('Success'); } Chorme & Mozila Firebox Browser :     The below javascript index() properity will working for both chrome and mozile...

Monday, 3 November 2014

JSON (Javascript Object Notation) is a convenient way to transport data between applications, especially when the destination is a Javascript application. Example : Here is a minimal example that uses JSON as the transport for the server response. The client makes an ajax request with the JQuery shorthand function $.getJSON. The server generates a hash, formats it as JSON and returns this to the client. The client formats this and puts...