It looks like you’re new here. If you want to get involved, click one of these buttons!
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);
});