Hi
I did this
$('#Id').live('click', function ()
{
/* Ajax request to load form into it */
var manager = $.manageAjax.create('nonCachedAjaxRequests',
{
preventDoubbleRequests: true,
cacheResponse: false
});
manager.add
({
type: 'Get',
url: 'url here',
success: function (response)
{
// stuff here
}
});
});
However when I do a double click it still allows them to go through however when I use the other way(uniqueName) It all works.
Stuff like caching seem to work just the preventDoubbleRequests is having problems.