When my web-page loads, user should be prompted to make a few selections in a sequence.
I want message balloons to pop up with messages something like -- "Hey, since you have selected your country, now select the province". These balloons should also point to that particular selection control.
Notice that, these balloons should appear on some method call that would make them live and not when hovered like tooltips
Any suggestions are welcome
Take a look at this plugin: http://zurb.com/playground/jquery-joyride-feature-tour-plugin.
I'm not sure about your html structure, but here is what you do. In your html, every place where you want your 'balloon' to appear you need to specify an anchor id.
(Examples taken from the official documentation)
For example if you want a 'balloon' over the
href, then:After you set up your anchors, you need to define how your balloon should look. For every
anchor idyour should specifydata-attributewith that id, if not specified, then balloon will be attached tobodyelement. Study example below:Then you need to add some javascript magic start to make everything work:
There are handful of options that you can set, please review the link above.