I am trying to send a javascript array to my web server for ajax request. Here is my code:
function SearchTasksByTags() {
The matrix is โโformed correctly, because when I click on the call to $.ajax() , the Chrome developer tools show the tag object as an array with 2 elements (all elements are just strings).
However, according to the violinist, the actual message parameters sent to the server are as follows:
undefined=undefined
What am I doing wrong?
Modify Console.Log shows:
console.log(tags) ["portability", "testing"] undefined
jquery arrays ajax
Kalldrexx
source share