A simple jQuery plugin for showing coach marks pointing to DOM elements with a text message (depends on RaphaelJS)
Create simple Coachy on an element:
$("#myButton").coachy({
on: "mouseover",
off: "mouseout",
message: "If you click there you'll see",
});
Create simple Coachy on an element that is opened upon instantiation:
$("#myButton").coachy({
message: "Welcome, click here to begin",
autoOpen: true,
life: 5000
});