Welcome to the nuBuilder Forums!

Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.

Hover function for user explanation of input fields

Post Reply
SteveHolland
Posts: 8
Joined: Tue Jun 28, 2016 12:09 pm
Location: Rotterdam, The Netherlands

Hover function for user explanation of input fields

Unread post 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?
admin
Site Admin
Posts: 2824
Joined: Mon Jun 15, 2009 2:23 am
Been thanked: 29 times

Re: Hover function for user explanation of input fields

Unread post 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
Post Reply