1 Ajax request performing 2 GET requests and not supposed to.
Strange behavior when performing a ajax request.
from this function:
-
function ajaxDialog(AjaxUrl, type, targetDom, dialogedDom, tabs, tabIndex) {
$.ajax({
url: AjaxUrl,
type: type,
DataType: "html"
});
}
I can see two GET requests bein perform.
There is no way I could be happening But it is.
Could someone gimme some help?
Thanks
Guilherme Longo