Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

AjaxGet

 $.ajax({
    type: 'GET',
    url: '/Index?id=' + SelectFieldValue,
    contentType: 'json',
    success: function (result) {
        console.log('Data received: ');
        console.log(result);
    }
});
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #AjaxGet
ADD COMMENT
Topic
Name
3+8 =