I'm navigating my webbrowser in windows phone 8 application using NavigateToString method and attaching callback using scriptNotify, but browser doesn't notify if navigate string contains JSON.stringify() method. the navigate string:
<script type="text/javascript">
var a = {u:"http://www.google.com"};
function Notify(e) { a.oX=e.clientX; a.oY=e.clientY;
window.external.notify(JSON.stringify(adDtl));}
</script>
but it scriptNotify perfectly when JSON.stringify is removed. e.g:
<script type="text/javascript">
function Notify(e) { window.external.notify('hi');}
</script>
adDtldefined? – zerkms Nov 21 '12 at 20:06JSON.stringifyis natively available in the phone's browser. – Alexei Levenkov Nov 21 '12 at 21:16stringifyto produce and see if it works directly... Also consider removing unrelatedafrom your sample and addingadDtl(named in some more normal way). Also work on your accept rate... – Alexei Levenkov Nov 21 '12 at 21:18