Page 1 of 1

Is it possible to add alt text?

Posted: Wed Sep 12, 2012 1:24 am
by parkerjnc
Is it possible to add alt text (aka hover text or tooltip) to objects? The idea being that if you hover over an object and/or its label you would get a little bit more explanation of the purpose of that object.

Re: Is it possible to add alt text?

Posted: Wed Sep 12, 2012 6:16 am
by admin
parkerjnc,

Add this to the JavaScript section of a form..

Code: Select all


function nuLoadThis(){

   document.getElementById('cus_name').title = 'Enter Customer Name';

}


Steven

Re: Is it possible to add alt text?

Posted: Thu Sep 13, 2012 7:43 pm
by parkerjnc
Thanks for the tip. :D This works well. I'm still trying to get used to nuBuilder and all the cool ways you can interject JavaScript and html code. Extremely extensible.

Re: Is it possible to add alt text?

Posted: Fri Sep 14, 2012 3:27 am
by admin
Cheers.