Javascript Tooltip Alternative

Can anyone suggest me an alternative to a Javascript tooltip? Check this.
Since the input box is for children, I want the help window to be brighter and more vibrant. Any suggested existing box?
The limitation is that I have to let the user enter a string by getting it. Thanks.

+4
source share
6 answers

Have you tried the jQuery user interface library?

Here you can see an example of a modal form.

You can change styles or choose from different themes.

+3
source

Have you tried BootBox ?

Bootbox.js is a small JavaScript library that allows you to create programmatic dialog boxes using Twitters Bootstrap modals, without having to worry about creating, managing, or deleting any of the required DOM elements or JS event handlers.

It has a very neat default alternative for a JavaScript window.

+7
source

JQuery's user interface is one good: http://jqueryui.com/demos/dialog/

+1
source

A jquery plugin named Impromptu provides many options not only for prompts, but also for warnings and confirmations.

+1
source

I find browser prompts (, confirm and delete) tremendously .

Partly to solve this problem, I wrote iocream.js. This is an example wrapper around the DOM with two text input methods: jin (read as C ++ cin ) and jinarea .

You can find documents in this beatbox repo and examples.

Hope I helped.

EDIT: I posted a similar answer here.

+1
source

qtip2 - another good free javascript library http://qtip2.com/

0
source

All Articles