url with the issue
https://www.one.om/testtranslate
trying to delete all cookies named "googtrans"
when you select a language from the google translate dropdown, the page translates as expected, refresh the page to see the issue:
now there should be two cookies with the name "googtrans", but different domains:
domain 1: ".one.om"
domain 2: "www.one.om"
when i use
$.cookie('googtrans',null, {domain:'www.one.om'});
that works fine, but
$.cookie('googtrans',null, {domain:'.one.om'});
does not any suggestions?