16.05.2017, 10:31
Do somebody knows how to limit events generating on "vclick"? I've prepared the .lp file which generates a table with hvac controllers values. I want prepare some functions which are based on "vclick" but I must have a solution for generating only 1 click on real 1 click but default javacript reaction is that for 1 real click there are 17 "vclick" events.
I've tried something like this:
and its working on every webbrowsers only not on Safari(PC, iPad).
Maybe somebody can give some advice what can be improved in above script?
I've tried something like this:
Code:
$('.table > tbody > tr > td:nth-child(3)').on('vclick', function(){
console.log(this.innerText)
$( this ).off( event.type );
});
and its working on every webbrowsers only not on Safari(PC, iPad).
Maybe somebody can give some advice what can be improved in above script?