I\'m trying to do a jquery GET and i want to send a parameter.
here\'s my function:
$(function() { var availableProductNames; $.get(\"manag
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.