fxb / javascript-last.fm-api

last.fm API bindings for JavaScript
http://lastfm.felixbruns.de/javascript-last.fm-api/
308 stars 53 forks source link

POST charset #5

Open pochemuto opened 13 years ago

pochemuto commented 13 years ago

Lastfm accepts only utf-8 charset. So replace: doc.write('<form method="post" action="' + apiUrl + '" id="form">'); to doc.write('<form method="post" action="' + apiUrl + '" id="form" accept-charset="UTF-8"><input name="iehack" type="hidden" value="&#9760;" />');

thx!