SyntaxFix
Write A Post
Hire A Developer
Questions
If you say that it works with accessing directly manageproducts.do?option=1 in the browser then it should work with:
manageproducts.do?option=1
$.get('manageproducts.do', { option: '1' }, function(data) { ... });
as it would send the same GET request.