Request 12.06.2022-21:01:38
Add click.on
AD) SIMPLE MOD HARBOUR SAMPLE
ADDING AN EVENT TRIGGER
Download:
https://mybergland.com/fwforum/mh_dbf_nav_click.zip
Now we trigger the event on the anchor tag elements
As you see in the basic sample, there is also a link to the jQuery LIB.
It is effortless to trigger elements with jQuery.
https://api.jquery.com/click/
We add to every
element an ID and then bind an event handler to the "click" JavaScript event,
The event handler can be bound to any
: $( "#target" ).click(function() {
alert( "Handler for .click() called." );
});