[jQuery] jQuery core charset???????????(please help!!!!me!)
I am doing some test and I have problems with specials chars... are
there any way to define charset into jQueryCore?
My code to post a form:
main.asp
.
.
<script src="jquery.js"></script>
<script>
jQuery.noConflict();
</script>
<script src="jquery.form.js"></script>
<body>
<form id="test1" action="test2.asp" method="get">
<INPUT id="Text1" type="text" name="Text1">
<INPUT id="td" type="button" onclick="saveTest();" value="Send"
name="Submit1">
</form>
.
.
JavaScriptFunction:
function saveTest()
{
var options = {
beforeSubmit: preSubmitAgenda, // pre-submit callback
success: postSubmitAgenda // callback
};
jQuery("#test1").ajaxSubmit(options);
}
THE PROBLEM:
1)Execute the code
2) Into text Field I write : ú
3) click on button
4) in test2.asp (I get the request), when I check
Request.QueryString("text1") value is ="á" ----------> instead of
"ú"
I think that problem is related with charset or something like that,
because If i execute a normal form without ajaxsubmit i get the right
value: ú
I am not sure if problem is related with jQuery core or form plugin