Modify widget code with jquery

Modify widget code with jquery

below is a code snippet for  the Microsoft Azure widget. I have used this on my site, but it translates the entire page. I only want to translate the content of one div not the whole page.

Is there any way to manipulate this code with Jquery so it only translates one div?

Please comment.
  1. <div id="MicrosoftTranslatorWidget" style="width: 360px; min-height: 57px; border-color: #3A5770; background-color: #78ADD0;">

  2. <noscript>
  3. <a href="http://microsofttranslator.com/bv.aspx?a=http%3a%2f%2flocalhost.com%2f">
  4. Translate this page</a><br />Powered by <a href="http://www.bing.com/translator">Microsoft® Translator</a>
  5. </noscript>

  6. </div> 
  7. <script type="text/javascript"> /* <![CDATA[ */ setTimeout(function() {
  8.  var s = document.createElement("script");
  9. s.type = "text/javascript"; 
  10. s.charset = "UTF-8";
  11. s.src = ((location && location.href && location.href.indexOf('https') == 0)
  12.        ? "https://ssl.microsofttranslator.com" : "http://www.microsofttranslator.com" ) + "/ajax/v2/widget.aspx?mode=manual&from=en&layout=ts"; 
  13.  var p = document.getElementsByTagName('head')[0] || document.documentElement; p.insertBefore(s, p.firstChild); }, 0); /* ]]> */ 
  14.  </script>