Bind function after () before () prepend ()

I would like to do something like

$('body').bind('before after prepend', function(){ alert('somebody changed the html');});

Does anyone know how to do this?

(I would also like to do this without using any plugin)

+3
source share
1 answer

You can bind to all events like Live Query .

+2
source

Source: https://habr.com/ru/post/1780377/


All Articles