Portuguese language characters in Jquery [duplicate]

-1

I understand little of Html, javaScript, etc., I needed a window similar to javascript alert, but with different font size, I searched and discovered the custom windows of JQuery, I downloaded a window called Confirm Override : link ), which works great, the problem is when I put the code:

<div class='header'><span>Atenção !</span></div>

I served to change the title, it did not display ç (cedilla), or any other single character of the Latin languages.

I would like to know if it is possible to enable this view in JQuery?

Note: I already tried the tag <meta charset="UTF-8">

    
asked by anonymous 27.02.2014 / 21:32

1 answer

0
<html lang="pt-br"> ou

<meta charset="iso-8859-1" />

would be a solution.

    
27.02.2014 / 22:20