Hi,
Few days back I was googling out for solving some problems with sharepoint pages through javascripts. And the result of that was as below:
http://webborg.blogspot.com/2008/04/add-functions-and-events-to-sharepoint.html
- add functions and events to sharepoint pages
I have few more to share but for now explore this one
Hi,
Below listed links are those which I came across while working on my tasks and during some RnD. Hope it proves helpful to you too
.
Debugging Javascript using vs.net
Recently I came across requirement for which I need to debug java-script using any editor.
So I Google a bit and found a great solution for this:
Debugging Javascript using vs.net
Recently I came across requirement for which I need to debug java-script using any editor.
So I Google a bit and found a great solution for this:
Steps
- Enable client-side script debugging in Internet Explorer
- Open Microsoft Internet Explorer.
- On the Tools menu, click Internet Options.
- On the Advanced tab, locate the Browsing section, and uncheck the Disable script debugging check box, and then click OK.
- Close Internet Explorer.
2. In your JavasSript function add the keyword debugger . This causes VS.NET to switch to debug mode when it runs that line.
3. Run your ASP.Net application in debug mode.
I think this is enough for now. Keep checking for new updates on the same.