Hi,
I understand your answer, I have added JS code with Code Pack plug-ins. In the head section of html page, I have:
jQuery(document).ready(function($){ function myfunction()
{
alert("coucou");
} });
Now I want to call this function with a free button. Normaly the JS code is called by:
<button type="submit" name="btn-coucou" id="btn-coucou" onclick="myfunction();">
Into SEBLOD, how I can make my button calls function 'myfunction'
Thank you in advance for your help