Tag Archives: code

MIX10: Jason Weber’s High-Performance Best Practices for Web Sites

During a long car trip to Buffalo, NY I decided to enrich myself by watching a few videos having to do with the field of web design. Here are my notes on Jason Weber’s presentation on High-Performance Best Practices for … Continue reading

Posted in Code Samples, Design Talk | Tagged , , , , , | Leave a comment

An Event Apart San Francisco Recap

Last month I had the privilege of being able to travel to San Francisco for An Event Apart. Besides the unruly flights (with connections in Atlanta) and the overall dreary weather of San Francisco (thanks rain and sleet!), it was … Continue reading

Posted in Design Talk | Tagged , , , , , , , | Leave a comment

Disable Submit Button Until Checkbox is Checked

Here’s an interesting tidbit of code I worked out today for a client website: $(document).ready(function() { $(‘input.button’).attr(‘disabled’, true); $(‘input.button’).attr(‘value’, ‘Please accept our terms to submit’); $(‘.accept input’).bind(‘click’, function() { if ($(‘.accept input’).is(‘:checked’) == true) { $(‘input.button’).removeAttr(‘disabled’); $(‘input.button’).attr(‘value’, ‘Send Memory’); } … Continue reading

Posted in Code Samples | Tagged , , , | Leave a comment