Peng Zhang on December 19th, 2011

These are my links for November 10th through December 19th: How To Find Unlimited Clients For SMS – Using FREE OpenVBX Software – SharePoint 101: Managed Paths – Zach Rosenfield’s SharePoint Blog – Using SVN for Web Development » SitePoint – Turn Off SharePoint Custom Error Message and Display Stack Page Output Trace – Knowledgebase [...]

Continue reading about Bookmarks for November 10th through December 19th

Peng Zhang on December 14th, 2011

The Problem On a Sharepoint page, I am using jQuery to render a link using attr(‘onclick’,’somejavascriptcodehere’), and that link works in Firefox but not in IE. The Solution Use $(‘a#theid’).click() instead of $(‘a#theid’).attr(‘onclick’,’javascript:somejavascriptcodehere’). The Possible Cause IE can handle other tag attributes added or updated by jQuery, but just could not immediately add an event [...]

Continue reading about onclick not working in IE but works in Firefox