I am developing a web application and I'm forced to use:
SQL_Latin1_General_CP1_CI_AS
as a character encoding. I'm trying to use Jquery-ui to make some beautified tabs, but I cannot manage to get the correct encoding.
I tried this:
$("#tabs").tabs({ ajaxOptions: { contentType: "text/html; charset=SQL_Latin1_General_CP1_CI_AS" } });
but with no luck. Does anybody have any clue on this one?
Thanks