For example, to get localStorage:
localStorage.setItem("lastSearchName", value);
alert('last search name '+localStorage.getItem('lastSearchName')); // This does not get executed. No alert box on the UI
return '{"Full_Name":{"$regex":"^'+value+'", "$options":"i"}}';
However, I find the root cause. Private mode browsing was turned on. Once turns it off, the web page starts to work.