Index: lams_tool_larsrc/web/includes/javascript/rsrcresourceitem.js =================================================================== RCS file: /usr/local/cvsroot/lams_tool_larsrc/web/includes/javascript/rsrcresourceitem.js,v diff -u -r1.8 -r1.9 --- lams_tool_larsrc/web/includes/javascript/rsrcresourceitem.js 14 Apr 2009 05:33:37 -0000 1.8 +++ lams_tool_larsrc/web/includes/javascript/rsrcresourceitem.js 8 Jan 2010 00:36:28 -0000 1.9 @@ -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; });