Google Map – Info Window

Demo Contact me for google map customization 🙂 Never feel sad on losing anything in ur life, Because whenever a Tree loses its leaf, A new leaf is ready to take it’s place…

Custom Google Search – setQueryAddition

Google Custom Search service provide customized search for web on your site or blog. We can filter Google Custom Search results on filetype like PDF 🙂 You have to initiate below JavaScript on event… // create a tabbed mode search control var tabbed = new GSearchControl(); tabbed.setResultSetSize(GSearch.LARGE_RESULTSET); // add an additional term to the query … Read more

json_add for php

JSON (JavaScript Object Notation) is a lightweight data-interchange format. 1. Easy for humans to read and write. 2. Easy for machines to parse and generate. 3. Collection of name/value pairs. 4. Used for C, C++, C#, Java, JavaScript, Perl, Python, and many others. 5. Compatible with universal data structures – array, vector, list, or sequence. … Read more

Custom Google Search

Google Custom Search service provide customized search for web on your site or blog. 1. We can add site’s links to get fast and relevant search results 2. We can make money with AdSense for Search 3. We can invite friends and community to contribute 4. We can include one or more websites, or specific … Read more

Web scraping using firefox & jQuery

Hello Friends, Today we will scrape HTML from any web page using jQuery and firefox firebug console. This is useful when you want to grab HTML of web page dynamically created by JavaScript or Ajax. This example is quite useful when you want to extract any web content based on HTML Tag element ID or … Read more

Auto Translation using Wibiya

Wibiya is a one-stop solution for the creation of a fun and customizable free web toolbar. Using the Wibiya free toolbar you can integrate, manage and track third party applications like facebook, twitter, youtube, blog feeds etc. easily. Boost your Blog/Website with Rich and Interactive Features * No coding necessary * Add it in two … Read more

VideoAPI

Curl must be on your server to use this plugin. This widget tested to latest version of wordpress. Download a2zVideoAPI.zip Extract and upload a2zVideoAPI.php to the plugins/ directory Enable a2zVideoAPI Widget in the Plugin admin panel Place a2zVideoAPI in the sidebar, and edit it to enter the Video URL

How to Create OpenSearch Plugins?

OpenSearch is a collection of simple formats for the sharing of search results. OpenSearch description file https://www.svnlabs.com/opensearch.xml We have to create  a simple xml file for websites and search engines to publish search results in a standard and accessible format. See below the code in action……. <?xml version=”1.0″ encoding=”UTF-8″?> <OpenSearchDescription xmlns=”http://a9.com/-/spec/opensearch/1.1/”> <ShortName>svnlabs</ShortName> <LongName>svnlabs – Concentrate … Read more

Install JSON on linux

Have the fun with json…. JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. # yum -y install php-pear # pecl install json # vi /etc/php.d/json.ini extension=json.so # service httpd restart

file format validation

Below is the code to check file type in javascript.. <script type=”text/javascript” language=”javascript”> function isImage(file) { var image    = /\.(jpg|jpeg|bmp|gif|png|jpe)$/i; if (image.test(file)) return true; else return false; } function isAudio(file) { var audio    = /\.(mp3|wav|mid|midi|mp2|ul|ra|m3u|ram|rm)$/i; if (audio.test(file)) return true; else return false; } function isArchive(file) { var archive    = /\.(zip|rar)$/i; if (archive.test(file)) return true; else … Read more