I want to show some amount in outlook with £ sign on selectindexchanged even of a dropdownlist client side.
Amount is displaying with sign in Win XP IE 7,8 but not in Windows 7 IE as given below:
HTML:
if($(this[this.selectedIndex]).val() == "A")
{
var mailsubject="New win";
var toEmail="abc@sify.com";
var vSign = "Amount: £" + $(this).parent().siblings()[4].next开发者_如何转开发Sibling.all[0].value;
var mailbody = escape(vSign);
window.open("mailto:"+ toEmail + "?subject=" + mailsubject + "&body=" + mailbody);
}
Does anyone know how to do it?
Try replacing the pound sign with its HTML entity:
£
And don't you mean JavaScript / jQuery, and not ASPX?
we got the solution.
we have to enable checkbox for "Enable UTF-8 support for mail to:protocol" in
Outlook --> Tools --> Options --> Mail Format --> International Options --> Internet Protocols
精彩评论