Smiley Parser with PHP

Smiley Parser with PHP

Today I am going to share How to make a smiley parser in PHP with few lines of code. A simple array with key as smiley symbol & value as image is used to parse a smiley using php’s str_replace function These little tricks  will spice up your IM conversations … Read more

How to reduce web page loading time with jQuery

Page Loading Time – Why It Matters and How To Fix It

Nowadays, everybody is obsessed with speed. Internet Connections, computers, 3G, browsers… Phrases like: “I sent you an email a minute ago. What do you mean you haven’t received it yet?” or “Our international Skype free video conference has a 1 second lag between the image and the sound. Sooo annoying!”are part of today’s world. … Read more

How to Validate IPv4 Address in PHP

Validate IP Address in PHP

Today I am going to tell how to validate IPv4 / IP address using PHP. Simple function which will used to check client IP address is valid or not. Steps to validate IPv4 Address in PHP Split IP address into segments  by dot(.)  using explode function Make sure that there … Read more

How to delete multiple rows from a table with jQuery?

Removing multiple rows from a table with jQuery

Today I am going to tell you how to delete multiple rows from table with jquery with few lines of code. I hope this tutorial will be really useful in your web projects during handling data’s rendering in table. Deleting single row in table is painful when you have more … Read more

Change Window/Document Title with jQuery

Today I am going tell  how to dynamically change document’s / window’s title using JavaScript and jQuery. The best way to change the document title is to use native javascript api document.title. document.title = “New Window Title by Javascript”; The equivalent jQuery code of js code above. $(document).prop(‘title’, ‘New Window Title … Read more

Create Responsive Image using CSS

Responsive Image using css

Now I am going to tell how to create a responsive image using css. Image will shrink based on screen resolution.  That means the image will flex to fit its parent container.Try resizing your browser to see responsive images in action. By using this simple technique you can create responsive … Read more

Sliding Facebook FanPage, Like Box using Jquery & CSS

Sliding Facebook Fanpage/likebox panel

Hi guys, Today I am going to share some useful tips to increase your facebook followers in your website by adding this simple jquery and css code. This code is used to show Sliding Facebook Like Box using jQuery & CSS Let us called Facebook FanPage Slider – both right … Read more