Page 1 of 1

Hover function for user explanation of input fields

Posted: Wed Jan 25, 2017 3:32 pm
by SteveHolland
Currently the Nubuilder breadcrumb function has an explanatory balloon function like "Desktop", "You are here".

What is the route to make explanatory balloons on input fields? It might be the "Events" tab, using Javascript?

Re: Hover function for user explanation of input fields

Posted: Thu Jan 26, 2017 3:53 am
by admin
Steve,

This is the html of a Breadcrumb..

Code: Select all

<span id="nuBreadCrumb_0" class="nuBreadCrumbSectionEnd nuBreadCrumbSection" onclick="nuGoToForm(0)" title="Desktop">Home</span>
it (or any input object) can be changed by...

Code: Select all

$("#nuBreadCrumb_0").attr('title', 'Hello There!') 
Steven