<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> ...
JavaScript Playing with dom
by Denis Jacquemin,
October 24, 2009 21:33,
2 refactorings, tagged with javascript, prototype, select, option
This code works fine, I jus...
$('.answer_filter').change(function() {
var filter = jQuery(this);
var select = jQuery('#' + filter.get(0).id); // @TODO find a more appropriate solution
...
JavaScript Get the id of a <select&...
by sebastian.deutsch.myopenid.com,
January 27, 2009 17:19,
3 refactorings, tagged with javascript, jquery, select
I get a change event within...
var next = false;
for (var i = 0; i < el.options.length; i++) {
if (next) {
...
JavaScript Check next option in select...
by Dmitry Polushkin,
January 25, 2009 15:04,
5 refactorings, tagged with select, options, increment, next
Could be written in plain j...
This is a little jQuery scr...