Friday, May 27, 2011
jQuery Special Events
Was looking for a hash tag change event and found reference in this StackOverflow thread about hashchange and other jQuery special events.
SharePoint 2010 Branding
The SharePoint Muse's list.
[Edited 05/17/2012]
Need to highlight this one by Heather Solomon:
SharePoint 2010 CSS Reference chart
[Edited 05/17/2012]
Need to highlight this one by Heather Solomon:
SharePoint 2010 CSS Reference chart
Thursday, May 26, 2011
Cannot open SharePoint sites in Firefox
Cannot open SharePoint sites in Firefox:
You have to enable NTLM.
You have to enable NTLM.
Friday, May 13, 2011
Visual Studio: Adding External Tool to Get Public Key Token
Visual Studio Tip: Get Public Key Token for a Strong Named Assembly:
Go to Tools --> External Tools.
Add a new menu item with these values:
Go to Tools --> External Tools.
Add a new menu item with these values:
- Title: Get SN Token
- Command: C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin\sn.exe
- Arguments: -T $(TargetPath)
- Use Output window: [checked]
Monday, May 9, 2011
Dotted HR on IE7
From lasiman's comment in this article:
"REAL DOTTED without Image can be accomplished by:
border:0px; border-top:1px dotted #000000; height:0px;
works in all browsers..
have a good day.."
Friday, May 6, 2011
Splitting a list into columns
- CSS Swag: Multi-Column Lists at A List Apart
- Columnizer jQuery Plugin by Adam Wulf
- A CSS/jQuery solution for creating multi-column lists
Monday, May 2, 2011
Getting outerHtml with jQuery
From Volomike and jessica's answers on http://stackoverflow.com/questions/2419749/jquery-get-selected-elements-outer-html: use .clone() and .wrap() with .parent() and .html(). Here it is as an extension:
and use it like this:
$(function() {
$.fn.outerHTML = function() {
return $(this).clone().wrap('<div></div>').parent().html();
}
});
and use it like this:
$("#myItem").outerHTML();
Subscribe to:
Posts (Atom)