jquery
16
jQuery Modal Dialog Close on Overlay Click
You may want a modal dialog to close if the overlay is clicked on the page. One way of doing that is to bind a click event to the document and fire it only when the dialog box does not have focus. This example uses a variable that is flipped back and forth depending on [...]
Tags: jquery
29
Using jQuery Autocomplete to Populate Another Autocomplete – ASP.NET, ColdFusion, and PHP Examples
4 Comments
.net, ColdFusion, jquery, php
As requested, this post covers using one jquery autocomplete to populate another jquery autocomplete on the same page. This example will use a jquery autocomplete to choose a state then, based on the state, another jquery autocomplete will be populated with zip codes for that state. Basically, the state chosen gets used as a filter [...]
Tags: .net, ColdFusion, jquery, php
18
ColdFusion Session Timeout with Warning and jQuery Session Refresh
2 Comments
ColdFusion, Web development, jquery
There are times when a user needs to sit on a page for a while either to read or fill out a long form. If their visit is controlled by a session timeout, for example a member site, then the session needs to be refreshed without refreshing the page. My previous post on user session [...]
Tags: ColdFusion, jquery
14
jQuery UI Autocomplete Widget with ASP.NET VB
3 Comments
.net, Web development, jquery
You might also be interested in the Using jQuery Autocomplete to Populate Another Autocomplete post. As a follow up to the jQuery UI Autocomplete Widget with ColdFusion and the jQuery UI Autocomplete Widget with PHP posts, I did one with ASP.NET (VB.NET) as the backend. I swear this is the last one I’m doing. I’m [...]
29
jQuery UI Autocomplete Widget with PHP and MySQL
You might also be interested in the Using jQuery Autocomplete to Populate Another Autocomplete post. As a follow up to the jQuery UI Autocomplete Widget with ColdFusion post, I did one with PHP as the backend. The jQuery UI folks have released an autocomplete widget that is pretty slick. This example uses the json_encode function [...]
