Hey! If you want a custom Google+ URL with your own domain,like http://www.vivekv.com/+/about/ , all you have to do is to append this line in your .htaccess file. If you do not have a .htaccess file placed in your root directory ( mostly in public_html ) create one. Please note that this is applicable only…Continue reading Custom Google Plus URL
Author: Vivek
“Exploding” Testimonial Page using PHP + JQuery
Dear friends, First of all, thank you for your continued support, I’ve heard many positive reviews about my blog ( though I don’t post much on this blog ) So, I was doing some enchantments on our hosting site http://www.sunshellhosting.com and adding some more client testimonials. So I come up with an ‘exploding’ testimonial box…Continue reading “Exploding” Testimonial Page using PHP + JQuery
Open all hyperlinks in a new tab
JQuery is #1 the solution for most of the problems that we encounter when we make a website. Recently I also stuck with a question, how to open all external links in a new window/tab without altering the content posted by the client/website owner . The solution is simple , just add a jquery…Continue reading Open all hyperlinks in a new tab
Nee Nenaindal – Vandana & Vidya Iyer
Classical South-Indian composition was sung by the amazing sister duo Vidya Iyer and Vandana Iyer. The Raga is Darbari Kannada. This is one of my personal favorite. This divine song will refresh your mind and is all about Goddess MahaLakshmi. Nee Nenaindal” just passed 100k views on youtube! httpv://www.youtube.com/watch?v=ky9SatRoyCY Lyrics =========== Pallavi: Nee nenaindal agadadum…Continue reading Nee Nenaindal – Vandana & Vidya Iyer
Rotate image 360deg when mouse hover using CSS 3
Hello Today I have designed a landing page for my website http://www.vivekv.com with some nice jQuery effects. Soon after I published the site address on facebook, I got questions from my friends that how did I rotate the images. They first thought ( like me ) that it is because of jQuery code. But no,…Continue reading Rotate image 360deg when mouse hover using CSS 3
Disable right click using jquery
To disable right click menu using jquery, the following code snippet can be used [javascript] $(document).ready(function(){ $(document).bind(“contextmenu”,function(e){ return false; }); }); [/javascript] Be sure to include Jquery before you write this code 🙂 Demo can be found here Vivek
Browser detection using Jquery
Hi It is very easy to detect the browser using jquery. This code snipt will give you the browser. [javascript] var browser = GetBrowser(); alert(browser) ; }) function GetBrowser() { $.browser.chrome = /chrome/.test(navigator.userAgent.toLowerCase()); if($.browser.chrome) return “chrome”; if($.browser.mozilla) return “mozilla”; if($.browser.opera) return “opera”; if($.browser.safari) return “safari”; if($.browser.msie) return “ie”; } [/javascript] Demo can be found here…Continue reading Browser detection using Jquery
My own personal Screen Capturing Software :)
Hi Sharing the software developed by me before an year, to take screenshots of selected area and share instantly. ScreenCap is an easy to use Screen Caputuring software . Simply press the Hotkey (Ctrl + 1), and instantly have access to a URL to share on Messenger, Twitter, Email, etc Instructions to use 1. Download…Continue reading My own personal Screen Capturing Software 🙂
Automatic CSF IP Remover!
Hello One of the major problem webhosts facing is the IP Block. Clients IP may accidentally get blocked due to several reasons such as Invalid cPanel Login attempt, or port scanning or some other reason. The villain (or hero ? ) is the firewall software that we use, in my case, ConfigServer Firewall ( CSF…Continue reading Automatic CSF IP Remover!
How to blink text using Javascript/Jquery
Ever wondered how to blink a text using javascript ? Well, here is the simple way to do using Jquery [javascript] This will blink [/javascript] To blink fast, you can change the speed of the FadeIn and FadeOut function. Demo : http://www.whmphp.com/trial.php Be sure to include jquery in your code 🙂