Semicolons after javascript statements

Dec12
  • Share

According to Javascript; the semicolon after a statement (for example a function), is optional.
However, it’s much better to end your line with [......]

继续阅读

Read more...


Create a Firefox Extension

Sep5
  • Share

Difficulty: ★★☆☆☆

Create the startup files and folders via:
https://addons.mozilla.org/en-US/developers/tools/builder/9b0cddaa3fc073e50a0e7e284ef64438

Pref[......]

继续阅读

Read more...


Create Chome Extension

Sep2
  • Share

Difficulty: ★☆☆☆☆

It’s really easy to create your own Chrome Extension.
This simple extension just opens your personal website in a new tab.

1. Creat[......]

继续阅读

Read more...


jQuery does not load 3G iphone safari

Aug17
  • Share

Difficulty: ★★★☆☆

Today I found out a very strange thing… My jQuery Mobile website doesn’t work on iPhone Safari in 3G mode. In WIFI mode my pa[......]

继续阅读

Read more...


Google Visualization API with Typo3 & FF3.6

Jun8
  • Share

Difficulty: ★★★★☆

I noticed this bug: my Google Visualization Charts were not working in FF3.6
Strange enough it did work in all of the other browsers I te[......]

继续阅读

Read more...


Chrome Safari Webkit only CSS hack

Feb22
  • Share

Difficulty: ★☆☆☆☆

Here’s an example how to target only webkit browsers:

input.search{
color: red;
}

@media screen and (-webkit-min-device[......]

继续阅读

Read more...


Nice search field

Feb2
  • Share

Difficulty: ★★★☆☆

Advanced HTML5 search field with placeholder and fallback for the other browsers.
Styling with gradient + radius + image in field.
With J[......]

继续阅读

Read more...


Config LinkedIN Javascript API for multiple environments (OTAP)

Feb1
  • Share

Difficulty: ★★☆☆☆

This is a solution how you can configure the LinkedIN Javascript API for multiple environments. For example OTAP.

First register all envi[......]

继续阅读

Read more...


Installing SASS + Compass for Windows & OS X

Jan29
  • Share

Difficulty: ★☆☆☆☆

It’s very easy to install Sass and Compass on your Mac. Sass is included with HAML.
To get SASS working, you’ll need an insta[......]

继续阅读

Read more...


Image base64 uri strings

Dec28
  • Share

Difficulty: ★★☆☆☆

By using the Data URI scheme you can embed images directly into your HTML and CSS. It works by encoding an image into a base64 string and[......]

继续阅读

Read more...