gravity forms thank you note on popup code example
Example 1: gravity form populate edit post
[gravityforms id="1" title="Contact us" field_values="awp_populate_me=Hello World&awp_another_field=Hello to you too"]
Example 2: gravity forms vote up or down
[js]
jQuery(document).ready(function($)){
jQuery('.gf_trigger_submit input').click(function(){
jQuery(this).parents('form').submit();
});
});