Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to check if a javascript function exists from silverlight

share|improve this question

2 Answers

up vote 2 down vote accepted

In your silverlight code you check for the presence of anything including a function a with the GetProperty method:-

 var fn = HtmlPage.Window.GetProperty("myJavascriptFunction");
 if (fn != null)
     fn.InvokeSelf("Hello");

On caveat though, if the name exists but it isn't a function the above code will throw an exception.

share|improve this answer

Use the HTML Bridge.

If you call HtmlPage.Window.Invoke(); on a javascript method that is not present, the Invoke() call should throw an exception.

share|improve this answer
In the javascript – zachary May 27 '10 at 17:49

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.