Newbie question.
Found that most of tutorials in the Internet focused how to pass parameters by GET / POST. Just some of them pointed to retrieval data and mostly by using PHP (jQuery docs) / ASP.NET etc.
How to retrieve AJAX posted data using pure JavaScript?
Exactly:
Post:
function detailOperator(_recordId, _title) {
$.mobile.changePage('#operator-view',
{ dataUrl: '?ID=' + _recordId + '&title=' + _title});
}
Post changing page successfully.
How to retrieve ID and title in operator-view page?