jquery
23
jQuery.ajax and jQuery.post Form Submit Examples with ColdFusion
This is the same as the previous jquery form submit post that used PHP just flavored with CF this time. Two jQuery functions that allow for the submission of form are the jQuery.ajax function and the jQuery.post function (there is also jQuery.get but that is not addressed here). More functionality, along with more complexity, is [...]
Tags: ColdFusion, forms, jquery
4
jQuery.ajax and jQuery.post Form Submit Examples with PHP
For a version of this using ColdFusion, see the CF jquery form submit post. Two jQuery functions that allow for the submission of form are the jQuery.ajax function and the jQuery.post function (there is also jQuery.get but that is not addressed here). More functionality, along with more complexity, is offered with the .ajax function while [...]
12
ColdFusion Example: Session Timeout Warning with jQuery/JS
You may also be interested in the post on refreshing session without reloading page with ColdFusion. Updated 11-Jan-2010: Improved ability to adjust timeouts and simplified code a bit. I wrote a post on session timeout warnings with PHP; here’s a version with ColdFusion. Some of the text is the same because the method and principles [...]
Tags: ColdFusion, jquery
10
Modal Confirmation Dialog on Form Submit: Javascript, jQuery UI, and Thickbox Varieties
77 Comments
Web development, Work, jquery
jQuery files updated June 23, 2010 If you liked this post, you might also like the jQuery.ajax and jQuery.post Form Submit Examples with PHP post. I wanted to make a nice modal dialog box that would confirm submission of a form. And, specifically, it had to ask if their e-mail address was correct that they [...]
17
jQuery Selection and Targeting of Dynamic ID Attributes
No Comments
Web development, jquery, php
When you have dynamically generated page content, either pulled from a database or otherwise generated on the fly, there are times when you need to target these areas with jQuery. For this example, six rows of radio buttons for a form are created using a PHP loop. Each unique id is created by concatenating a [...]
