This Firebug feature is called simply Log Events and allows developers to log DOM events into the Console panel.
No one wants to cry over regression issues in views; does testing HTML and CSS have to be such a...
Write your app using HTML, CSS or JavaScript, upload it to the PhoneGap Build service and get back app-store...
The step definition below lets you write: When I click on "Foo" This is useful in Selenium features where the...
In a nutshell: Capybara's find will not work properly on nodes from a list. Don't find on elements...
To have your text input field pre-filled in with some text that disappears as soon as the user selects...
Consider this HTML: Click me! Hello Universe! Hello Universe! Hello Universe! Hello Universe! Hello Universe! Hello Universe!
When using the asset pipeline your assets (images, javascripts, stylesheets, fonts) live in folders inside app: app/assets/fonts app/assets/images...
Consider the following HTML & CSS: ^ img { background-color: red; } div { border: 1px solid black; } This will leave a margin of...
Localizing a non-trivial application can be a huge undertaking. This card will give you an overview over the many...
%p #{link_to "label", "url"}! Haml is a great engine for writing shorter, readable HTML. However, there is...
When requests arrive at the application servers simultaneously, weird things can happen. Sometimes, this can also happen if a user...
Say you want to vertically align a div box inside a div container. This is how you do it:
Today, this line made me trouble. Can you spot the mistake? match 'sitemap.xml' => 'feeds#sitemap', :constraints => { :format => 'xml' }, :as => 'sitemap...
So you probably see the following error trace within your Passenger log file if you got here:
This is a demo of the "Tabby" Javascript jQuery plugin to use tabs in regular textareas to make them suitable...
Capybara has a global option (Capybara.ignore_hidden_elements) that determines whether Capybara sees or ignores hidden elements.
If your project manager wants to do gatekeeping on a project, as a developer you need to follow the following...
Imagine you have 2 HTML boxes. The first one has a margin-bottom of let's say 30px and the...
REST Client is a nice, simple HTTP client library for Ruby. When you do a simple GET request like that...
Tooltips that are delivered through HTML attributes are encoded. Decode entities before checking for their presence. Capybara: Then /^there should...
You can use text-overflow to truncate a text using CSS but it does not fit fancy requirements.
When using Rails to truncate strings, you may end up with strings that are still too long for their container...
Most of the JavaScript snippets have code that manipulates the DOM. For that reason dom manipulating javascript code should have...