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.7.2.1 -r1.7.2.1.4.1 --- lams_tool_larsrc/web/includes/javascript/rsrcresourceitem.js 14 Apr 2009 04:56:21 -0000 1.7.2.1 +++ lams_tool_larsrc/web/includes/javascript/rsrcresourceitem.js 8 Jan 2010 00:37:42 -0000 1.7.2.1.4.1 @@ -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; });