Index: lams_tool_larsrc/web/includes/javascript/rsrcresourceitem.js =================================================================== diff -u -r529adc13063b7d012d49a4c7ed47a27716c76a94 -r1be2d4401dbae2128ff03c18aa70fdf4237482d8 --- lams_tool_larsrc/web/includes/javascript/rsrcresourceitem.js (.../rsrcresourceitem.js) (revision 529adc13063b7d012d49a4c7ed47a27716c76a94) +++ lams_tool_larsrc/web/includes/javascript/rsrcresourceitem.js (.../rsrcresourceitem.js) (revision 1be2d4401dbae2128ff03c18aa70fdf4237482d8) @@ -8,7 +8,7 @@ function removeInstruction(idx){ var param = $("#instructionForm").serialize() + "&removeIdx="+idx; removeInstructionLoading(); - $.get(removeInstructionUrl, param, function(xml) { + $.post(removeInstructionUrl, param, function(xml) { removeInstructionComplete(); document.getElementById("instructionArea").innerHTML = xml; }); @@ -32,7 +32,7 @@ function addInstruction(){ var param = $("#instructionForm").serialize(); addInstructionLoading(); - $.get(addInstructionUrl, param, function(xml) { + $.post(addInstructionUrl, param, function(xml) { addInstructionComplete(); document.getElementById("instructionArea").innerHTML = xml; });