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...

Friday, 30 May 2014

How to blink text in html for various browsers The blink() method is not standard, and may not work as expected in all browsers. The blink() method is used to display a blinking string. This method returns the string embedded in the <blink> tag, like this: <blink>string</blink> Note:  The blink() method only works in Opera. It is not supported in Internet Explorer, Firefox, Chrome, or Safari. So alternatively...

Saturday, 1 March 2014

Call to undefined function imap_binary() in php imap_binary — Convert an 8bit string to a base64 string <?php   chunk_split(base64_encode($string), 60); ?> chunk_split — Split a string into smaller chunks Imap Binary Author : Elangovan Related Posts: 1. 413 “Request Entity Too Large” error with uploading a file 2. Difference between cookies and sessions in php 3. How to create a .webp image in PHP 4. How to expire PHP session after a period of time 5. How to resolved when Logged out sessions get restored by back...