var myUrl = "http://192.168.1.140:1880/feedback"; function post_my_command(event) { "use strict"; $.ajax({type: "POST", url: myUrl, data: { command: event.data.action }}); } $(document).ready(function () { "use strict"; $("#turnREDon").click({action: "redOn"}, post_my_command); $("#turnYELLOWon").click({action: "yellowOn"}, post_my_command); $("#turnGREENon").click({action: "greenOn"}, post_my_command); $("#turnALLon").click({action: "allOn"}, post_my_command); $("#turnREDoff").click({action: "redOff"}, post_my_command); $("#turnYELLOWoff").click({action: "yellowOff"}, post_my_command); $("#turnGREENoff").click({action: "greenOff"}, post_my_command); $("#turnALLoff").click({action: "allOff"}, post_my_command); });