.icon-whatever{
background-image: url("url_to_image_whatever.png
");
background-position: center center;
}
.row-fluid [class*=span] {....}that fit all elements with classname containing "span", while bootstrap uses only span1...span12 class names.
<span class="ms-siteactions-imgspan">...</span>Workaround is to replace all [class*=span] places for [class^=span] - this will fit all tags class="spanX"
Source: http://milhaniqbal.com/webplatform-the-new-site-for-web-standards/140 |
html:
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
$._data($(SELECTOR).get(0), "events")before v1.9 in was also possibe by calling
$(SELECTOR).data("events")but by no this one is deprecated.