I will try to be as specific as possible here:
- MVC 3 Razor project.
Three containers, on the page, consisting of radio buttons.
Only the first set of radio buttons is loaded on page load.
The second set is dependent on the user selecting from the first set, and the third set depends on the second set.
- User selects from first set.
- Ajax call builds html for second set. Same process occurs for the third set to load.
These selectors are used to store some info in a db for later retrieval.
My problem is that when I pull these records back out and attempt to trigger the clicks (mimic a user) on the appropriate sets of radio buttons.. I can't seem to fire the clicks on the elements which get loaded through ajax.
Example:
$.ajax({
url: some_url,
data: { some_param: some_var },
success: function (data) {
//2 examples of what I have tried
//Index 1 div is already on the page, so the click fires and loads
//the divs for index 2, however, the Index 2 click doesn't fire.
$('div[id=' + data.Index1 + ']').click();
$('div[id=' + data.Index2 + ']').click();
$('div[id=' + data.Index3 + ']').click();
//same result as above
$.when(
$('div[id=' + data.Index1 + ']').click();
).done(function () {
$.when(
$('div[id=' + data.Index2 + ']').click();
).done(function() {
$('div[id=' + data.Index3 + ']').click();
});
});
},
async: false
});
Now, I could just implement some different code specifically to handle loading existing data. But I figured there must be a way to call these clicks the way I want to.
I appreciate any and all feedback.
.on()– MrOBrian Jul 17 '12 at 17:37