Twitter Timeline Script Using jQuery & CSS

Twitter Timeline using jQuery & CSS

Hi guys, now a days every web developer following the facebook timeline design to their blogs. Today I am going to tell how to create a Twitter Timeline with jQuery and CSS. I am planning to create facebook timeline script soon with php and jquery. In this script, I have … Read more

CSS3 Tags Design

CSS3 Tags

I am going to share tags design using pure CSS3. This is used to highlight your blog tags. Blog Tags are used to highlight keywords or search words in a blog or site content. These tags have been designed with pure CSS3 and additional fallback for older browsers. CSS3 Code … Read more

Facebook like Live Notification Message using jQuery

facebook-live-notification

Everyone knows that facebook has a live notification messages that pop ups bottom-left corner.  Today I am going to share same kind of facebook like live notification message system using jquery and css.

facebook-live-notification
facebook like live notification jquery

Jquery Code

$(document).ready(function() {
$.sticky('The page has loaded!');
});

Html Usage

<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="script.js"></script>
<link rel="stylesheet" href="script.css" type="text/css" />

Notification position can also be customizable. By default it is top-right. Other options are bottom-right, bottom-left, top-left.

Autoclose option is also there.

Please don’t forget to share and subscribe to latest updates of the blog. Also any comments and feedback are all welcome!

Thanks!

Timezone conversion in PHP

Today I am going to share some useful tip to convert country wise timezone in php You can have time zone set for India as ‘Asia/Kolkata‘ this will add +5.30 to GMT time. You will get proper time of your time zone. Php code for Setting India Time Zone List … Read more

Vimeo Instant Search using Jquery and PHP

I have found this article from Speckyboy.com. Instant Search is very popular among developers now a days. Web developers and Internet enthusiasts alike are very fond of online video services. One social video website Vimeo is a great example of how HD content can be stored and streamed across the planet. I love … Read more

Disable Enter Key using Jquery

Disable Enter Key using jQuery

People dont want to submit forms when typing enter keys. So I am sharing a simple jquery code to disable enter key using JQuery while typing in forms.  Those who want to disable enter key in their form to prevent form submission, they can use this code Jquery Code to … Read more

MYSQL 5.6 New features

mysql 5.6

At a glance, 5.6 is simply a better MySQL with across the board improvements that hit every functional area of the database kernel, bringing benefits whether you deploy on-premise or in the cloud, including: Better Performance and Scalability Improved InnoDB for better transactional throughput and developer agility Improved Optimizer for … Read more

Convert Plain Text into Clickable HyperLink – PHP

preg_replace – Searches $subject for matches to $pattern and replaces them with $replacement. By using the above preg_replace function I have created a simple function which will first find urls inside text and convert all into clickable links Please check my Top 10 code snippets in PHP  PHP Code : Usage … Read more

Creating Drop Caps using CSS3 & HTML

Hi guys, I am going to share some simple css3 code to display the first character from your paragraph as large fonts. CSS3 Drop Caps – simply used to style a paragraph with more attractive. It will increase the readability for a webpage. Css3 Code Html Code & Usage Please … Read more