Category Archives: Web Development

Drag and Drop Concept – Jquery

Hi all, Here I’m going to show you, how to implement drag and drop functionality using jquery. This drag and drop method mostly used for designing purpose.Drag the image from div and drop to specified div after successfully droped the success message box display otherwise fail alert box display. Here I just used a simple… Read More »

My_blog- Free Flat Design WordPress Theme

Hi all, Wordpress use both simple and complex website. WordPress is the CMS platform on the web. WordPress theme can be used to create website like blog, personal, corporate and portfolio site. My_blog theme is free wordpress theme. It’s simple and responsive. This modern and flat theme is designed based on the latest bootstrap technology.… Read More »

Alter a column to be AUTO_INCREMENT – Mysql

Hi friends, Today, I’m trying to modify a table to make it’s primary key column AUTO_INCREMENT after the fact. Here I going to demonstrate how to reset auto-increment value in MYSQL. The AUTO_INCREMENT attribute can be used to generate a unique identity for new rows. First create the table with field. Here we create the… Read More »

Live html compiler – PHP

Live HTML compiler using PHP is very simple one like as w3schools editor. In here we are going to run the textarea code in the iframe.Main difference from w3schools try editor,the w3schools try editor used asp.net but, here PHP with iframe is used.Visitors are need to edit their code for their own need, and they… Read More »

Rounded Image with CSS Shadows

Hi friends, This article shows “Rounded Image with CSS Shadows”. Any rectangular image into a circular one with drop shadows and borders without editing the original images. In here, simple replace the background-image URL in the DIV with your own image. Perfect for display the author photos in your blog’s sidebar,display team members, testimonial etc.… Read More »

JQuery for Mobile App Development

Hi Guys, Here I share one useful and helpful information related to “JQuery for Mobile App Development”. JQuery mobile is a touch-friendly Web UI development framework that is used to develop mobile web applications that work across smartphones and tablets. The jquery mobile framework builds on top of the jquery core and provides a number… Read More »

How to make Blinking the text/button/div in html5 and Javascript

The blinker() function helps to blink text/div/button etc.. Set the fadein and fadeout time in blinker(). Also set the timeinterval. Blinking code <button class=”blink_me” >This will blink </button> <script src=”http://code.jquery.com/jquery-1.9.1.js”></script> <script> function blinker() { $(‘.blink_me’).fadeOut(500); $(‘.blink_me’).fadeIn(500); } setInterval(blinker,1000); </script>