I have a form and I do not want to "serialize" the input's type of checkbox , so I tried some options such as below:
var form = $('#service-item-form :not(:input[type="checkbox"])').serialize();
But unfortunately it does not work! I would like to know what I can try to do to resolve this issue.