asp.net - Display large amount text on mouseover -


i'm using pop-up tooltip: http://www.dynamicdrive.com/dynamicindex16/showhint.htm

so whenever mouse-over [?] sign, message appears.

in script provided:

<a href="#" class="hintanchor" onmouseover="showhint('please choose username. should consist of alphanumeric characters only.', this, event, '150px')">[?]</a> 

i meant enter text display in pop-up within showhint function shown above.

my problem have large amount of text display (i.e. half page of word document size) , need arranged breaks between paragraphs.

when put chunk of texts within first parameter of showhint function, doesn't work.

how tooltip display long message appropriate breaks etc?

thanks!

the "show hint" script using seems accepting html tags inside - can put text in paragraph

<a href="#" class="hintanchor" onmouseover="showhint('<p>please choose username.</p><p>should consist of alphanumeric characters only.</p>', this, event, '150px')">[?]</a> 

Comments

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -