Skip to content Skip to sidebar Skip to footer

Toggle Hide/show Table Td In .hta

I've seen several of posts regarding this subject, but I have not managed to solve my own problem despite of having tried different methods. I am programming in a .hta file, where

Solution 1:

The div.togglelink's will be attached after the document has been loaded, your on-handler will only have an effect to elements that are present when the document loads.

Attach the handler to the body instead:

$('body').on('click','span.togglelink',function(){/*your callback*/}); 

Post a Comment for "Toggle Hide/show Table Td In .hta"