The solution was the Safarifix.browser mentioned here plus the note about compat.moss.browser mentioned at the bottom of this post.
Wednesday, November 26, 2014
Thursday, October 16, 2014
Dropdowns with autocomplete and synonyms
The Redesigned Country Selector:
'The technically correct term for this would be something like an “auto-complete text field with loose partial matching, synonyms and weighted results.”'
Monday, September 22, 2014
Font units relative to viewport
Whoa! Did not know (or had forgotten) that CSS3 has font units that are relative to the viewport. See:
Thursday, August 21, 2014
Thursday, July 3, 2014
Wednesday, June 25, 2014
Thursday, June 5, 2014
Wednesday, June 4, 2014
HTML5 tutorials
A collection of useful links here:
http://stackoverflow.com/questions/5827758/html5-and-css3-tutorials
http://stackoverflow.com/questions/5827758/html5-and-css3-tutorials
Thursday, May 22, 2014
Study guide for MS Exam 70-480
Facebook Debugger
Facebook debug tool:
"Enter a URL to see some helpful feedback about your page markup. Enter an access token to see its expiry and user."
Used it to check my og:image meta tags.
"Enter a URL to see some helpful feedback about your page markup. Enter an access token to see its expiry and user."
Used it to check my og:image meta tags.
Getting parts of a URL without using regex
As this response on StackOverflow says, have the browser do it for you:
Or, with jQuery:
var a = document.createElement('a');
a.href = 'http://www.example.com:123/foo/bar.html?fox=trot#foo';
['href','protocol','host','hostname','port','pathname','search','hash'].forEach(function(k) {
console.log(k+':', a[k]);
});
/*//Output:
href: http://www.example.com:123/foo/bar.html?fox=trot#foo
protocol: http:
host: www.example.com:123
hostname: www.example.com
port: 123
pathname: /foo/bar.html
search: ?fox=trot
hash: #foo
*/
Or, with jQuery:
var lnk = $('<a href="http://www.example.com:123/foo/bar.html?fox=trot#foo" />')[0]; $.each(['href','protocol','host','hostname','port','pathname','search','hash'], function(idx, k) { console.log(k+':', lnk[k]); });
Friday, May 9, 2014
Aptana notes
- TFS plugin from Microsoft
- additional syntax highlighting plugin
- setting the editor tool (use similar steps to associate HTML editor to .aspx)
Wednesday, May 7, 2014
Prop Lightsabers
Info:
Sellers (or about the sellers):
Sellers (or about the sellers):
- Ultra Sabers
- Parks Sabers
- Star Wars thread on RPF
- FX-Sabers (with crystal chambers!)
Sunday, May 4, 2014
Free icons
Free icons and other stuff at Smashing Magazine freebies page.
Thursday, February 27, 2014
Notes on Touch Events on IE10+
Monday, February 17, 2014
HTML Entities and a CSS content calculator
Nice reference for HTML characters with entity, decimal, and hex columns.
Use that info with the CSS content calculator linked on this article about CSS Content from CSS-Tricks.
Use that info with the CSS content calculator linked on this article about CSS Content from CSS-Tricks.
Wednesday, February 12, 2014
Notes on Learning AngularJS
The tutorials that got me to understand what I'm looking at (in order that I remember watching them):
- Miško Hevery and Brad Green - Keynote - NG-Conf 2014
- AngularJS Fundamentals in 60-ish Minutes
- Google I/O 2013 - Design Decisions in AngularJS
- Introduction to Angular.js in 50 Examples
- AngularJS Tutorial at Thinkster
- John Lindquist's egghead.io
Some cool stuff:
Resources:Friday, January 24, 2014
IE11 Emulation and Conditional Comments
Conditional comments will work for IE9 and below emulation modes if meta X-UA-Compatible is set to the version that's being emulated.
From Conditional comments do not work when emulating document modes via F12 Developer Tools:
From Conditional comments do not work when emulating document modes via F12 Developer Tools:
Conditional comments ... are only supported in legacy document modes of Internet Explorer (see http://msdn.microsoft.com/library/ms537512.aspx). In IE11 GA, legacy mode conditional comments are not enabled when choosing a document mode through F12 Developer Tools. Choosing a document mode through X-UA-Compatible, however, does enable conditional comments for the legacy mode.
Thursday, January 2, 2014
Subscribe to:
Posts (Atom)