public marks

PUBLIC MARKS with tags html & js

2010

2009

Dynamically Created Radio Buttons - Another IE Gotcha

by astrochoupe
As soon as I think I have it all worked out I bump into another oddity between Firefox and IE and handling the DOM. Specifically adding a radio button (or set of them) dynamically. My initial javascript went something like this: # var rdo = document.createElement('input'); # rdo.type = 'radio'; # rdo.id = 'someUniqueID'; # rdo.name = 'myRadio'; # rdo.value = 1; # # myDocumentsBody.appendChild(rdo); This almost worked perfectly. The input was added, it was a radio button, but it was totally unselectable. I could select it via javascript but the normal "click" event didn't cause the radio button to assume the "selected" state in IE? What gives?

2008

FatFreeCart - Free shopping cart for Google Checkout and PayPal

by camel & 1 other (via)
FatFreeCart is a free shopping cart developed by the team behind E-junkie shopping cart. Get Google CheckoutIt works inside your website, your blog and will even work from your MySpace page. It is simply a copy-paste cart and does not require you to register with us or install anything. It works with PayPal and Google Checkout. Get PayPalIt supports product variations, shipping, handling and sales tax. If you are already using PayPal shopping cart, you will find the button code is similar. On top of being certified by PayPal and Google, it has been successfully tested on humans and they absolutely love it (which means higher conversion rates for you). FatFreeCart is also the only serious cart with a somewhat funny name.

obtrusivejavascriptchecker - Google Code

by greut & 1 other

Goes through all the HTML code in a web page, and outlines any HTML element with inline events with a red border.

nifty idea (via codepo8)

2007

Greasemonkey Imports | The Experiments of Gareth Andrew

by greut

GreasemonkeyImports adds the ability to import files into your greasemonkey scripts, this allows splitting your javascript into a more modular file organisation, including third party libraries, and importing extra resaources such as images, html and css.

@import and @require for GM

Combo Boxes

by camel & 2 others (via)
The combo box can use any type of Ext.data.Store as it's data source. This means your data can be XML, JSON, arrays or any other supported format. It can be loaded using Ajax, script tags or be local. This combo uses local data from a JS array.

2006