I attempted to transfer data from one HTML page to another using two different methods:
function reply_click(clicked_id)
{
window.location = "newsList.html?Title="+clicked_id;
}
And I also tried:
function reply_click(clicked_id)
{
window.localStorage.setItem("Title", clicked_id);
window.location = "newsList.html";
}
However, both methods are not functioning properly on Windows Phone.
I am seeking assistance in resolving this issue.