Okay, so I have button that onclick it displays a div. Inside of this div I have a cfform and a cfdiv.
<div id="test" style="display:none;">
<cfform>
<cfinput name="tinput1" type="text">
</cfform>
<cfdiv bind="url:tests.cfm?InputText={tinput1}" ID="theDiv"/>
</div>
This works but it works only if I click off of the input, is there a way to run the bind onchange?