<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DZone Snippets: javascript code</title>
    <link>http://snippets.dzone.com/posts</link>
    <pubDate>Mon, 08 Sep 2008 03:56:39 GMT</pubDate>
    <description>DZone Snippets: javascript code</description>
    <item>
      <title>object.innerText for IE and FF</title>
      <link>http://snippets.dzone.com/posts/show/514</link>
      <description>&lt;code&gt;&lt;br /&gt;function getInnerText(elt) {&lt;br /&gt;	var _innerText = elt.innerText;&lt;br /&gt;	if (_innerText == undefined) {&lt;br /&gt;  		_innerText = elt.innerHTML.replace(/&lt;[^&gt;]+&gt;/g,"");&lt;br /&gt;	}&lt;br /&gt;	return _innerText;&lt;br /&gt;}&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;Then, replace:&lt;br /&gt;&lt;code&gt;var text = elt.innerText;&lt;/code&gt;&lt;br /&gt;by:&lt;br /&gt;&lt;code&gt;var text = getInnerText(elt);&lt;/code&gt;</description>
      <pubDate>Wed, 27 Jul 2005 23:11:27 GMT</pubDate>
      <guid>http://snippets.dzone.com/posts/show/514</guid>
      <author>ms_michel (Michel)</author>
    </item>
    <item>
      <title>Close current window (for IE and FF)</title>
      <link>http://snippets.dzone.com/posts/show/267</link>
      <description>&lt;code&gt;&lt;input type="button" value="Close" onclick="CloseWindow();" /&gt;&lt;br /&gt;&lt;script type='text/javascript'&gt;&lt;br /&gt;&lt;!--&lt;br /&gt;function CloseWindow() {&lt;br /&gt;	ww = window.open(window.location, "_self");&lt;br /&gt;	ww.close();&lt;br /&gt;} &lt;br /&gt;--&gt;&lt;br /&gt;&lt;/script&gt;&lt;/code&gt;</description>
      <pubDate>Tue, 10 May 2005 18:02:13 GMT</pubDate>
      <guid>http://snippets.dzone.com/posts/show/267</guid>
      <author>ms_michel (Michel)</author>
    </item>
    <item>
      <title>window.onbeforeunload</title>
      <link>http://snippets.dzone.com/posts/show/142</link>
      <description>&lt;code&gt;&lt;br /&gt;window.onbeforeunload = function (evt) {&lt;br /&gt;  var message = 'Are you sure you want to leave?';&lt;br /&gt;  if (typeof evt == 'undefined') {&lt;br /&gt;    evt = window.event;&lt;br /&gt;  }&lt;br /&gt;  if (evt) {&lt;br /&gt;    evt.returnValue = message;&lt;br /&gt;  }&lt;br /&gt;  return message;&lt;br /&gt;}&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;http://www.highdots.com/forums/archive/index.php/t-66363.html</description>
      <pubDate>Tue, 12 Apr 2005 02:45:20 GMT</pubDate>
      <guid>http://snippets.dzone.com/posts/show/142</guid>
      <author>ms_michel (Michel)</author>
    </item>
  </channel>
</rss>
