html - How to display huge amount of data a tooltip -


i displaying 400 account names in tooltip of span element.

<input type="button" value="accountlist" id="accountlist" title="[400 names here]" /> 

but displaying part of it, not displaying 400 account names. how caused , how can solve it?

you hitting browser's length limit on title attribute. limit depends on browser. microsoft (ie) publishes limit 512. don't think have official published limits other browsers, empirically doesn't seem lot more that.

you can solve not relying on browser's "tool tip", build own custom 1 using css. here simple tutorial.


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -