I am currently doing a system where it has to be possible to check/uncheck a checkbox. Everytime it changes status I need jquery to make and ajax call to a page, that update
Something like this probably?
$('.checkbox').click(function (){ var val = $(this).is(':checked'); $.load('url_here',{status:val}); });