Welcome to the jKit community. This is the place to discuss everything on and around jKit. Be friendly and I’m sure other members will be friendly with you, too.
Resize event
  • Hello,

    how can I call a function, external to jKit plugin, a custom function defined on another script, on resize event triggered by Background command?

  • In the initial sequence, simply add the call to your function on window resize:

    $(document).ready(function() {

    $('body').jKit();
    $(window).resize(your_function);
    

    });