Yes! This is exactly what I was looking for. Thank you all for your help!
:)
specify the div you want to load after the page and if you need any db
interaction the call it within the div you are loading
$('#dealerTable').load('index.cfm #dealerTable');
>Reloading the div with the same URL will load everything within the whole
>page inside the div. The content outside the div (in this case) does not
>need to be reloaded. Only the content inside the div needs to be
>reloaded.
>
>Um, why not just use load with the same url?
>
>
>example. I don't want to reload the div with content from another page
>like the following: $("#myDiv").load("pageName.cfm");
>>
>>