0
Change webpage title dynamically using jquery
This is a simple script that will change the webpage title dynamically using jquery.
Customize it according to your requirement.Jquery knowledge is essential to understand the code below. Any doubts do get back to me Happy Coding!!!!
<title>Title...
Zoom in and zoom out image using jquery
This scripts demonstrates how to Zoom in and zoom out image using jquery when you move mouse over the image.
<title>Move mouse on image to Zoom In and Zoom Out</title>
<script type="text/javascript" src="http://demo.mistonline.in/jquery-1.2.3.min.js"></script>
<script...
Create an animated button using jquery
This tutorial will help you in creating a animated submit button or similar using jquery.Here is the code.
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script...
Ajax and Jquery
This is a simple script which uses JQUERY to easily collect data from another webpage using asynchronous data collection method [AJAX].
Here the page loads another content without reloading the entire webpage. It loads data in to a div tag using...
Simple jquery image slider
This is just an easy to use image slider for your webpage.We use jCarousel which is a jQuery plugin for controlling a list of items in horizontal or vertical order. The items, which can be static HTML content or loaded with (or without) AJAX,...
Simple page flip effect using Jquery, css and simple html
Simple page flip effect using Jquery, css and simple html, very easy to implement just copy paste the code below
This is the javascript part enter it inside the … section of your website.
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script...
Get youtube video screenshot using jquery
This is yet another script using jquery to get the Youtube video screenshot
<html>
<head>
<script src="http://mistonline.in/wp/demo/jquery-1.2.3.min.js"></script>
<title>Mistonline.in , Youtube Screenshot...
Random images per day using javascript and jquery
This script shows how to display random pics or images depending upon the day.This script use simple javascript approach along with jquery.
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>
<style...
Animated information box using simple jquery
This tutorial is a very simple approach on how to create an information box using Jquery and some CSS styling.
This is a very unique one and really an eye caching for the visitors of your site since the information box blinks accordingly before...
Expand and collapse toggle div using jquery
This is a very simple tutorial on how to show and hide a division tag or Expand and collapse toggle div using simple jquery.
<script src=”http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js” type=”text/javascript”></script>
<script...
Load Another Webpage Content Using Simple Jquery
Guys here we are gonna see how we can load another webpage content using jquery, very simple to use.
Code:
1. HTML Page
Here is the code of “test.html” file
<head>
<title>Content Showing Script</title>
<script...
Slideshow using jquery
Just a simple slideshow using jquery
<div id="slideshow">
<img src="img/img1.jpg" alt="" class="active" />
<img src="img/img2.jpg" alt="" />
<img src="img/img3.jpg" alt="" />
</div>
Now let’s use...
Disable submit button on form submit
Multiple form submission is one of the issues that a webmaster face during his development.So instead of writing a hardcore code in the server side.We can just validate a multiple submission using simple client side Jquery.
Consider we have...
