i have a validation.js file
var name = $(\"#name\");
$.ajax({
type: \"get\",
url: \"test.jsp\",
data: \"n
The good-old IE expects to redirect somewhere when you use an anchor tag. If you have something like the following:
Submit
IE will show you blank page with [Object object] when using JSON, even if submit() uses ajax.
You can use onClick instead or javascript:void sumbit() like this:
Submit
I didn't test the void solution but a coworker of mine says that's the one he uses.