Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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>
share|improve this question
1  
where is adDtl defined? – zerkms Nov 21 '12 at 20:06
Look into the json2.js library. – Dismissile Nov 21 '12 at 20:17
@Dismissile, json2.js is unlikely to help as JSON.stringify is natively available in the phone's browser. – Alexei Levenkov Nov 21 '12 at 21:16
Try to call notify with text you expect stringify to produce and see if it works directly... Also consider removing unrelated a from your sample and adding adDtl (named in some more normal way). Also work on your accept rate... – Alexei Levenkov Nov 21 '12 at 21:18

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.