Category Archives for jquery

Positioning Multiple jQuery UI Dialogs

This post shows one way to position multiple jQuery UI dialogs on the same page. It positions the dialog over the calling button based on the button’s position in the viewport. The dialog box contents can be placed anywhere in the body. For this example they look like this: Not much. Just a little styling [...]

Also posted in Web development | Tagged | 1 Comment

Printing a Dynamically Loaded Iframe with jQuery

This is an example of printing a dynamically loaded iframe on a button click. This is useful for printing specific or generated reports or pages without leaving the current page. The iframe to be targeted looks like this and can be placed virtually anywhere in the body tag: The button to be clicked for printing: [...]

Also posted in Web development | Tagged | 2 Comments

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 [...]

Also posted in ColdFusion | Tagged , , | 25 Comments

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 [...]

Also posted in php | Tagged , , | 28 Comments

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 [...]

Also posted in ColdFusion | Tagged , | 20 Comments