Twitter History Search

Easy way for searching your twitter history

Big Words

Inspired by iphone Big Words,Not ask why I build it, and what function!!!!

Multiple Search

This website help you to compare different search results.

Fill in the Blank Generator

This application is useful tool to reduce teacher workload.

Advertise

Friday, 31 August 2012

BookMarkLet


What is BookMarkLet

BookMarkLet is bookMark(hyperlink) with javascript
<a href="javascript: alert('Arbitrary JS code!');">Alert!</a>
draw Alert! to your bookmark Bar Alert! and Click it!!!

Window onblur & focus


Desc

When this window is focused or blurred, a message will appear below telling you when you left and when you came back:

Demo

Source Code

LINKING PAGES USING BUTTNONS


Alert

Some time from SEO angle linking using a button is not a good idea as we loose the anchored text advantage of hyper linking.

Demo

Source Code

GOOGLE CODE PRETTIFY - syntax highlighter




desc

use google code prettify to display code in any website

demo

Source Code

HIGHLIGHT RELATIVE IMAGE

desc

when mouse hover paragraph A, image A will be added border

demo


Source Code


Sunday, 26 August 2012

JAVASCRIPT - OBJECT


Intro

Today, I would like to show you how to create an object with javascript. all the resource come from: Head First jQuery ch6 jQuery and JavaScript Luke jQuery, I am your father!

Tutorial

use full screen will be better.

Demo

Entire Code

Friday, 24 August 2012

WINDOW OPEN & CLOSE


Focus

  1. window.open()
  2. window.print()
compatibility:   firefox would not support this close current window
Reason:   firefox can't close windows it didn't create. it can close any window that it open.

main code:

//window.print()
onclick="javascript: window.print();"

//window.open()
onclick="javascript:
                    var win = window.open('', '_self');
                    win.close();return false;"

Entire Source code

Head up!  only HTML,CSS and result are available