Here is an essay version of my class notes from Class 1 of CS183: Startup. Errors and omissions are my own. Credit for good stuff is Peter’s entirely.
CS183: Startup—Notes Essay—The Challenge of the Future
Purpose and Preamble
| /////////////////////////////////////////////// | |
| ////// GRAVITY FORMS RESET STYLES ////// | |
| /////////////////////////////////////////////// | |
| // These styles are made in mind to be used with SCSS or LESS | |
| // If you use these styles, you must go to the Gravity Forms settings in the WordPress back end and set Output CSS to No. | |
| ////----- Core Containers | |
| .gform_heading, | |
| .gform_body, |
| jQuery(function($) { | |
| $('form[data-async]').live('submit', function(event) { | |
| var $form = $(this); | |
| var $target = $($form.attr('data-target')); | |
| $.ajax({ | |
| type: $form.attr('method'), | |
| url: $form.attr('action'), | |
| data: $form.serialize(), |
Here is an essay version of my class notes from Class 1 of CS183: Startup. Errors and omissions are my own. Credit for good stuff is Peter’s entirely.
CS183: Startup—Notes Essay—The Challenge of the Future
Purpose and Preamble