Reputation: 91
I'm trying to implement a jquery menu in a silverlight web application. Since I'm just a newbie, could anybody give me a step by step guide on how to do this?
I'd be very thankful for any help..
Upvotes: 0
Views: 357
Reputation: 104196
You can't use jQuery or javascript code inside a Silverlight application. You can host your Silverlight application in a web page that has a jQuery menu. Your Silverlight application can interact with javascript in the page that is hosted. You can define entry points in your Silverlight application and call them through javascript.
Upvotes: 1