<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<rss version="2.0">
  <channel>
  <title>comp.lang.javascript Google Group</title>
  <link>http://groups.google.com/group/comp.lang.javascript</link>
  <description>Netscape Communications Corp.&amp;#39;s JavaScript language.</description>
  <language>en</language>
  <item>
  <title>FAQ Topic - How do I force a reload from the server/prevent caching? (2008-08-29)</title>
  <link>http://groups.google.com/group/comp.lang.javascript/browse_thread/thread/4843a290874621cf/0f04f601555524ee?show_docid=0f04f601555524ee</link>
  <description>
  ------------------------------ ------------------------------ ----------- &lt;br&gt; FAQ Topic - How do I force a reload from the server/prevent &lt;br&gt; caching? &lt;br&gt; ------------------------------ ------------------------------ ----------- &lt;br&gt; To reload a page, use location.reload(). However, this depends &lt;br&gt; upon the cache headers that your server sends. To change this,
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/comp.lang.javascript/browse_thread/thread/4843a290874621cf</guid>
  <author>
  javascr...@dotinternet.be
  (FAQ server)
  </author>
  <pubDate>Thu, 28 Aug 2008 23:00:02 UT
</pubDate>
  </item>
  <item>
  <title>How are arguments a legit argument to Array.slice?</title>
  <link>http://groups.google.com/group/comp.lang.javascript/browse_thread/thread/9de9d5c4fee01539/ee6c155aaedcb237?show_docid=ee6c155aaedcb237</link>
  <description>
  In the code sample below, how are arguments a legitimate &lt;br&gt; argument to Array.slice? &lt;br&gt; Function.prototype.bind = function(){ &lt;br&gt; var fn = this, args = Array.prototype.slice.call(arg uments), object = &lt;br&gt; args.shift(); &lt;br&gt; return function(){ &lt;br&gt; return fn.apply(object, &lt;br&gt; args.concat(Array.prototype.sl ice.call(arguments)));
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/comp.lang.javascript/browse_thread/thread/9de9d5c4fee01539</guid>
  <author>
  lorl...@gmail.com
  (lorlarz)
  </author>
  <pubDate>Thu, 28 Aug 2008 20:36:12 UT
</pubDate>
  </item>
  <item>
  <title>Modify String.prototype?</title>
  <link>http://groups.google.com/group/comp.lang.javascript/browse_thread/thread/d96434407409d562/85552f73085c4a2f?show_docid=85552f73085c4a2f</link>
  <description>
  The FAQ shows a mod to String.prototype adding trim, trimRight and &lt;br&gt; trimLeft. &lt;br&gt; Flanagan states, &amp;quot;There is a strong argument against extending built- &lt;br&gt; in types with your own methods; if you do so, you are essentially &lt;br&gt; creating your own version of the JavaScript API.&amp;quot; And he goes on to &lt;br&gt; say that this will confuse other programmers who may need to maintain/
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/comp.lang.javascript/browse_thread/thread/d96434407409d562</guid>
  <author>
  martinrineh...@gmail.com
  </author>
  <pubDate>Thu, 28 Aug 2008 15:23:09 UT
</pubDate>
  </item>
  <item>
  <title>Prioritize form field</title>
  <link>http://groups.google.com/group/comp.lang.javascript/browse_thread/thread/4cdc85e299759847/353c2dace8512b18?show_docid=353c2dace8512b18</link>
  <description>
  How can the function below be rewritten to prioritize form fields instead of &lt;br&gt; other objects with the same name? &lt;br&gt; For example I want getele(&amp;quot;title&amp;quot;) to retrieve the form field named &amp;quot;title&amp;quot; &lt;br&gt; instead of document.title - how do I get it to do that? &lt;br&gt; function getele(n, d){ &lt;br&gt; //argument &#39;n&#39; is the name of the object you want to get
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/comp.lang.javascript/browse_thread/thread/4cdc85e299759847</guid>
  <author>
  p...@hverdag.dk
  (Frowning Freezer)
  </author>
  <pubDate>Thu, 28 Aug 2008 14:41:35 UT
</pubDate>
  </item>
  <item>
  <title>Issue in FF: document.write a DIV (block level element) inside a LABEL tag</title>
  <link>http://groups.google.com/group/comp.lang.javascript/browse_thread/thread/83acad812122dce1/1b0c3338f4f232ed?show_docid=1b0c3338f4f232ed</link>
  <description>
  Hi, &lt;br&gt; I am having problems figuring out how to make Firefox behave, and &lt;br&gt; output the HTML I want it to output. &lt;br&gt; The thing I want done is actually quite simple. I have a &amp;lt;label&amp;gt; tag, &lt;br&gt; and inside it, I have a script tag, that document.write&#39;s some HTML. &lt;br&gt; Like this: &lt;br&gt; &amp;lt;label&amp;gt; &lt;br&gt; &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt; &lt;br&gt; document.write(&amp;quot;&amp;lt;div&amp;gt;Test&amp;lt;\/di v&amp;gt;&amp;quot;);
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/comp.lang.javascript/browse_thread/thread/83acad812122dce1</guid>
  <author>
  syko...@gmail.com
  (SuneR)
  </author>
  <pubDate>Thu, 28 Aug 2008 11:09:41 UT
</pubDate>
  </item>
  <item>
  <title>read charset of meta tag</title>
  <link>http://groups.google.com/group/comp.lang.javascript/browse_thread/thread/2fb277b937036961/5ab2aa5bc41a2b26?show_docid=5ab2aa5bc41a2b26</link>
  <description>
  Hello! &lt;br&gt; I cannot find anything about this thing. &lt;br&gt; I need to read what kind of charset is being set on the &lt;br&gt; &amp;lt;META http-equiv=&amp;quot;Content-Type&amp;quot; CONTENT=&amp;quot;text/html; charset=iso-8859-2&amp;quot;&amp;gt; &lt;br&gt; I need to do this in javascript. &lt;br&gt; How to read charset in javascript? I want javascript function to return in &lt;br&gt; this case iso-8859-2.
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/comp.lang.javascript/browse_thread/thread/2fb277b937036961</guid>
  <author>
  marcinzmyslow...@poczta.onet.pl
  (MZ)
  </author>
  <pubDate>Thu, 28 Aug 2008 10:12:13 UT
</pubDate>
  </item>
  <item>
  <title>OT: Why is this group comp.lang.javascript shrinking to &lt;25%?</title>
  <link>http://groups.google.com/group/comp.lang.javascript/browse_thread/thread/e03961dd9527f935/6ff1d45e1865d3d2?show_docid=6ff1d45e1865d3d2</link>
  <description>
  Have you often felt quite unhappy here when reading some unfriendly although &lt;br&gt; formally correct answers especially to newcomers? &lt;br&gt; If we look at the statistics of this group comp.lang.javascript &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://groups.google.com/group/comp.lang.javascript/about&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; one can see, that around the year 2000 there were often more than 6000 posts
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/comp.lang.javascript/browse_thread/thread/e03961dd9527f935</guid>
  <author>
  optimistxpoi...@poistahotmail.com
  (optimistx)
  </author>
  <pubDate>Thu, 28 Aug 2008 09:19:16 UT
</pubDate>
  </item>
  <item>
  <title>Style File Input</title>
  <link>http://groups.google.com/group/comp.lang.javascript/browse_thread/thread/eb87d6dd3f290ec3/c5d0fac3993074d8?show_docid=c5d0fac3993074d8</link>
  <description>
  Hi, &lt;br&gt; Does anyone knows how to style and input of type file with JQuery? &lt;br&gt; I want to use an image as the button or maybe a simple normal input &lt;br&gt; styled with CSS. &lt;br&gt; I also want to style the input where the path is ... I want it to have &lt;br&gt; a grey background and no border. &lt;br&gt; Any idea of how to accomplish this? &lt;br&gt; Thanks,
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/comp.lang.javascript/browse_thread/thread/eb87d6dd3f290ec3</guid>
  <author>
  mdmo...@gmail.com
  (shapper)
  </author>
  <pubDate>Thu, 28 Aug 2008 01:47:44 UT
</pubDate>
  </item>
  <item>
  <title>How to create a popup window like Google notebook</title>
  <link>http://groups.google.com/group/comp.lang.javascript/browse_thread/thread/fa5827bcd9785327/4a3fd1e93cceb1e0?show_docid=4a3fd1e93cceb1e0</link>
  <description>
  Hi, &lt;br&gt; Google notebook is a small popup window at the corner of your &lt;br&gt; browser. &lt;br&gt; If you type this url in a browser (assume you already logged in &lt;br&gt; google) &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.google.com/notebook/onpage?client=gnotesff&amp;v=1.0.0.20&amp;zx=1219882143016#b=BDRWLIwoQyMncqI8i&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; The main page is blank, the popup window is shown.
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/comp.lang.javascript/browse_thread/thread/fa5827bcd9785327</guid>
  <author>
  qwu2...@gmail.com
  (Qiang)
  </author>
  <pubDate>Thu, 28 Aug 2008 01:10:27 UT
</pubDate>
  </item>
  <item>
  <title>FAQ Topic - How do I trim whitespace - trim/trimRight/trimLeft (2008-08-28)</title>
  <link>http://groups.google.com/group/comp.lang.javascript/browse_thread/thread/d8271dee18adc4b2/47984291d509640e?show_docid=47984291d509640e</link>
  <description>
  ------------------------------ ------------------------------ ----------- &lt;br&gt; FAQ Topic - How do I trim whitespace - &lt;br&gt; trim/trimRight/trimLeft &lt;br&gt; ------------------------------ ------------------------------ ----------- &lt;br&gt; Using Regular Expressions (JavaScript 1.2/JScript 3+) : &lt;br&gt; String.prototype.trimLeft = &lt;br&gt; function()
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/comp.lang.javascript/browse_thread/thread/d8271dee18adc4b2</guid>
  <author>
  javascr...@dotinternet.be
  (FAQ server)
  </author>
  <pubDate>Wed, 27 Aug 2008 23:00:02 UT
</pubDate>
  </item>
  <item>
  <title>Conditional include of JS files -- how?</title>
  <link>http://groups.google.com/group/comp.lang.javascript/browse_thread/thread/2da5f299f8578968/725ae5aa8ae736f4?show_docid=725ae5aa8ae736f4</link>
  <description>
  I&#39;ve a set of Javascript classes that maintain state. For example, &lt;br&gt; gm.js might be: &lt;br&gt; var GroupManager { groups: {} }; &lt;br&gt; Over time I add new groups to the list: &lt;br&gt; GroupManager.groups[key] = myGroup; &lt;br&gt; If I include another Javascript file that also includes a reference to &lt;br&gt; include gm.js, or do this through an Ajax call, this new loading of
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/comp.lang.javascript/browse_thread/thread/2da5f299f8578968</guid>
  <author>
  java...@sbcglobal.net
  (rocketeer)
  </author>
  <pubDate>Wed, 27 Aug 2008 20:56:42 UT
</pubDate>
  </item>
  <item>
  <title>How to check if an object has defined setter?</title>
  <link>http://groups.google.com/group/comp.lang.javascript/browse_thread/thread/9a233c5619c41a11/f4be2aca8f37ba50?show_docid=f4be2aca8f37ba50</link>
  <description>
  Hi! &lt;br&gt; Ok, so I have small problem and can&#39;t find solution to it.. Is there &lt;br&gt; any way to check if an object has defined setter? In other words - if &lt;br&gt; it&#39;s value can be changed? &lt;br&gt; Small example: &lt;br&gt; var el = document.getElementById(&#39;eleme nt&#39;); &lt;br&gt; el.style = &amp;quot;smth&amp;quot;; &lt;br&gt; Browser will throw exception, I can use try..catch but is there way to
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/comp.lang.javascript/browse_thread/thread/9a233c5619c41a11</guid>
  <author>
  piotr.korzeniew...@gmail.com
  (Piotr K)
  </author>
  <pubDate>Wed, 27 Aug 2008 19:43:46 UT
</pubDate>
  </item>
  <item>
  <title>Printing</title>
  <link>http://groups.google.com/group/comp.lang.javascript/browse_thread/thread/e29b8920d804b1eb/9a90ce1c60ecd330?show_docid=9a90ce1c60ecd330</link>
  <description>
  I have been asked to implement a &amp;quot;Print All&amp;quot; function to an application. &lt;br&gt; The current screen has a list of invoices. Clicking on any one of &lt;br&gt; them (via a preview button) opens a new window for that invoice. They &lt;br&gt; can then, of course, print that document. &lt;br&gt; What they want is a single button that sends all the invoices to a
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/comp.lang.javascript/browse_thread/thread/e29b8920d804b1eb</guid>
  <author>
  (sheldonlg)
  </author>
  <pubDate>Wed, 27 Aug 2008 18:02:52 UT
</pubDate>
  </item>
  <item>
  <title>is IE6 violating the same-origin policy?</title>
  <link>http://groups.google.com/group/comp.lang.javascript/browse_thread/thread/c164f3b827c7662f/d36dcf14723125e7?show_docid=d36dcf14723125e7</link>
  <description>
  I had a web page hosted in one domain. In IE6 it is able to request &lt;br&gt; data from another page in a different domain using XMLHttpRequest &lt;br&gt; object. It fails in IE7/Firefox/Safari. Can you confirm that the &lt;br&gt; XMLHttpRequest object in IE6 violate the same-origin policy? I am not &lt;br&gt; sure if it was my error or IE6&#39;s fault. Thank you!
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/comp.lang.javascript/browse_thread/thread/c164f3b827c7662f</guid>
  <author>
  jackcha...@gmail.com
  (jackchang1@gmail.com)
  </author>
  <pubDate>Wed, 27 Aug 2008 16:43:02 UT
</pubDate>
  </item>
  <item>
  <title>webglade</title>
  <link>http://groups.google.com/group/comp.lang.javascript/browse_thread/thread/8d87e20bb4fe5489/6be371fc8bae3539?show_docid=6be371fc8bae3539</link>
  <description>
  Hi all, &lt;br&gt; I have written a JavaScript library to create XUL GUI from Glade XML &lt;br&gt; files: &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://logand.com/sw/webglade/&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; It is currently limited to XUL but it would be great if it worked with &lt;br&gt; browsers which do not support XUL. &lt;br&gt; I found yui, extjs, gwt, qooxdoo quite interesting but I am not sure &lt;br&gt; whether they cover the range of widgets available for Gtk and XUL
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/comp.lang.javascript/browse_thread/thread/8d87e20bb4fe5489</guid>
  <author>
  kviet...@googlemail.com
  </author>
  <pubDate>Wed, 27 Aug 2008 16:29:03 UT
</pubDate>
  </item>
  </channel>
</rss>
