Reputation: 320
I have a textbox in xul firefox application and I generate some text from this textbox and paste it in my website.
How do I show a popup message or some message when someone puts the cursor on the generated text?
My browser is Firefox.
Thanking you guys in Advance.
karthik
Upvotes: 1
Views: 1155
Reputation: 24078
You can do something like this with Javascript: <span onmouseover="alert('Message');">Generated text here.</span>
Upvotes: 1