active questions tagged javascript - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T11:12:47Zhttp://stackoverflow.com/feeds/tag/javascripthttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1802962/overriding-a-prototype-js-method0Overriding a prototype.js methodHippyjim2009-11-26T10:46:23Z2009-11-26T11:05:54Z
<p>I'm attempting to override the Form.Element.disable() method in PrototypeJS so that it adds a custom class to disabled form elements.</p>
<p>I've added:</p>
<pre><code>Form.Element.disable = function(element) {
element = $(element);
element.blur();
element.disabled = true;
element.addClassName("disabled");
return element;}
</code></pre>
<p>to the page after loading prototype.js - this works if called directly eg</p>
<pre><code>Form.Element.disable("myInputBox");
</code></pre>
<p>But the original PrototypeJS method is used if I call</p>
<pre><code>$("myInputBox").disable();
</code></pre>
<p>I know it's something to do with the "scope" in which I'm defining it - I'm effectively creating a new instance of the disable() method, but I have no idea how to shift the scope so that it replaces the original PrototypeJS version.</p>
<p>Where am I going wrong?</p>
http://stackoverflow.com/questions/1802763/is-object0-sort-of-a-default-key-for-an-object-in-javascript0Is object[0] sort of a default key for an object in JavaScript?René Nyffenegger2009-11-26T10:06:36Z2009-11-26T10:58:01Z
<p>Here's a small JavaScript snippet:</p>
<pre><code> var re_words = /\w+/g;
var words;
while (words = re_words.exec(' here are a few (sic!) words ')) {
alert(words);
}
</code></pre>
<p>The loop alerts the words found in the input string, which is what I expected, because all the JavaScript tutorials tell me so.</p>
<p>Now, <strong>typeof(words)</strong> results in <strong>object</strong>.</p>
<p>Therefore, I would have expected <strong>alert(words)</strong> to give me <strong>object</strong>.</p>
<p>If I inspect the elements in words, I found them to be 0, "index" and "input". The element words[0] is the same as what is alerted with words.</p>
<p>So, the question is: is the element 0 sort of a default index for an Object in JavaScript which is returned if it is defined. </p>
<p>Or asked differently: why does <strong>alert(words)</strong> give the same effect as <strong>alert(words[0])</strong>? I would have expected alert(words) to give a "Object".</p>
http://stackoverflow.com/questions/1802930/setting-onbeforeupload-on-body-element-in-chrome-and-ie-using-jquery0Setting onbeforeupload on body element in Chrome and IE using jQueryGraeme2009-11-26T10:41:40Z2009-11-26T10:55:18Z
<p>I have a system where I want to check with the user if they're sure they want to leave the page once a dirty flag is set. </p>
<p>I'm using the following code - In FireFox, I can look at the page source through FireBug and the tag correctly has the onbeforeunload attribute inserted in it. </p>
<p>In Chrome and FireFox, this doesn't happen though and I'm able to navigate away from the page without any warning at all. The jQuery line to update the body tag is definitely being executed, it just isn't performing it.</p>
<pre><code>if ($("body").attr('onbeforeunload') == null) {
if (window.event) {
// IE and Chrome use this
$("body").attr('onbeforeunload', 'CatchLeavePage(event)');
}
else {
// Firefox uses this
$("body").attr('onbeforeunload', 'return false;CatchLeavePage(event)');
}
}
</code></pre>
<p>Any ideas how to proceed from here?</p>
http://stackoverflow.com/questions/1802960/javascript-textbox-autocomplete-clears-drop-down-selection0Javascript textbox autocomplete clears drop down selectionRich2009-11-26T10:46:07Z2009-11-26T10:52:40Z
<p>Morning folks.</p>
<p>Novice Rich here once again requesting assistance.</p>
<p>I have just started dabbling with javascript and although I have set up a few onclick/change for setting the focus of radio buttons,that's pretty much my limit.</p>
<p>In my c# code behind, I would like to have an 'onchange' function whereby once a client starts to type in my autocomplete textbox, a drop down list (which is likely to have been populated previously) is reset/cleared to it's original state.</p>
<p>Anyone got any ideas how to do this?</p>
<p>(Chances are I haven't exp[lained myself very well here)</p>
http://stackoverflow.com/questions/1802324/asp-net-script-service-consumption-in-javascript0ASP.net Script Service consumption in javascriptAjay2009-11-26T08:39:34Z2009-11-26T10:33:40Z
<p>I have a script service in asp.net and I need to consume this WS from javascript using JSONP (Script tag injection; since it is cross domain, no $.ajax() call).</p>
<p>In this case, where the input to the web method is a complex structure, I have to <em>create</em> the input structure at the client. How does matching of the client-side structure to the Server side parameter happen?</p>
http://stackoverflow.com/questions/1802872/google-maps-centering-or-marker-positioning-issue0Google Maps centering or marker positioning issueVladimir Kadalashvili2009-11-26T10:31:17Z2009-11-26T10:31:17Z
<p>Hi everyone,</p>
<p>I develop a simple Google Maps application. I need just to place one marker on the map. For whatever reason, the marker is placed outside of the visible area of the map. It's a little bit strange, because the map is centered to the marker's coordinates. Here is the code:</p>
<pre><code>var point1 = new GLatLng(location1.lat,location1.lon);
map1.setCenter(point1, 15);
var marker1 = new GMarker(point1);
map1.addOverlay(marker1);
map1.setCenter(point1);
</code></pre>
<p>When we drag the map a little bit, we can see the marker. What do I need is to center the map in the way the marker will be visible without map dragging.</p>
<p>Can anyone help me?</p>
http://stackoverflow.com/questions/1802518/relative-script-path-in-usercontrol0Relative script path in usercontrolArsenMkrt2009-11-26T09:18:34Z2009-11-26T10:27:13Z
<p>Hi,
I have asp.net usercontrol that is including some js script like this</p>
<pre><code><script type="text/javascript" language="javascript" src="../JScripts/JScripts.js"/>
</code></pre>
<p>The problem is that when I am using this usercontrol in some pages, it works correctly, but when using some pages in another folder structure, it fails with the file not found exception message. Changing js path to </p>
<pre><code>~/JScripts/JScripts.js
</code></pre>
<p>doesn't help. is there any way to solve this problem decoratively?</p>
http://stackoverflow.com/questions/1802433/javascript-validation-for-a-dynamic-gridview-have-checkbox0Javascript validation for a dynamic gridview have checkboxAvi2009-11-26T09:01:51Z2009-11-26T10:13:46Z
<p>Hi,</p>
<p>I have created a GridView Dynamically. This dynamic gridview has two Template Field column. Both the column has checkboxes in every row. How do I write the client side validation so that only one checkbox is checked at a given time in a particular row.</p>
<p>I tried using this code but it didn't work</p>
<pre><code> function MutExcCheckBox()
{
var wipChk = document.getElementById("ckhBoxSelect");
var aukChk = document.getElementById("chkBoxABC");
for(i = 0; i<wipChk.length ; i++)
{
if(wipChk[0].checked==true)
{
aukChk[0].checked=false;
}else if (aukChk[0].checked==true)
{
wipChk[0].checked=false;
}
}
</code></pre>
<p>I have added the <code>Onclick</code> attribute from code behind.</p>
<pre><code>ckh.Attributes.Add("Onclick", "MutExcCheckBox()");
</code></pre>
<p>Thanks</p>
http://stackoverflow.com/questions/1802708/what-is-container-based-authentication0What is Container-Based Authentication?Colour Blend2009-11-26T09:57:01Z2009-11-26T10:05:00Z
<p>I know the "XMLHttpRequest" object supports a method "open" which has an optional parameter of a username and password. I just found out that these parameters can be supplier for requests requiring container-based authentication.</p>
<p>This is the method signature:</p>
<pre><code>open(method, url, async, username, password)
</code></pre>
<p>Can someone help me out with the meaning of Container-Based Authentication?</p>
http://stackoverflow.com/questions/1802744/i-need-some-critique-about-lib-design0I need some critique about lib designNilColor2009-11-26T10:04:14Z2009-11-26T10:04:14Z
<p>OK. I have this lib for my internal project</p>
<pre><code>(function() {
var window = this,
undefined; //guaranteed undefined
var h3 = window.h3 = function (user) { return window.h3 = new h3.prototype.init(user); };
h3.prototype = {
init: function(user) {
timestamp = +new Date;
this.user = user;
return this;
},
VERSION: '0.0.1', // Current version.
timestamp: undefined,
user: undefined,
a: function() {alert('a');}
};
h3.prototype.init.prototype = h3.prototype;
})();
</code></pre>
<p>Here is a usecase:
I need a lib that will store session user data and provide some functions for application like loading (via AJAX) information, display reports etc. Application is fully AJAX-driven. With help of jQuery i'll check for user credentials and init this lib with <code>h3({user:'user_a',foo:'bar'})</code> call. Thus i will have a global object called h3 and can user it latter (say <code>h3.a()</code>). If i need to re-init this object i can do it with <code>h3.init({user:'user_b',foo:'bla-bla-bla'})</code> call.<br>
Design inspired by well-known jQuery lib.<br>
And main question is - how good/bad is this? Can you help me to validate this design?</p>
http://stackoverflow.com/questions/1802354/how-to-remove-a-cookie-by-using-javascript-3How to remove a cookie by using Javascript?Steven2009-11-26T08:46:13Z2009-11-26T09:59:19Z
<p>How to remove the cookie set by</p>
<pre><code>javascript:void(document.cookie=”PREF=ID=20b6e4c2f44943bb:U=4bf292d46faad806:TM=1249677602:LM=1257919388:S=odm0Ys-53ZueXfZG;path=/; domain=.google.com”);
</code></pre>
<p>The following statement doesn't work.</p>
<pre><code>javascript:void(document.cookie=”PREF=ID=20b6e4c2f44943bb:U=4bf292d46faad806:TM=1249677602:LM=1257919388:S=odm0Ys-53ZueXfZG;expires=Thu, 01 Jan 1970 00:00:00 GMT;path=/; domain=.google.com”);
</code></pre>
<p>What's wrong with the removal code?</p>
http://stackoverflow.com/questions/1802647/jquery-appendto-listbox-not-working-in-ie0jQuery appendTo listbox not working in IEminusone2009-11-26T09:44:27Z2009-11-26T09:58:18Z
<p>Hey folks,</p>
<p>I have a listbox containing "all" the items and a second listbox that will contain "selected" items. I want to have it so that double-clicking an item in the "all" listbox adds that item to the "included" listbox.</p>
<p>Currently i have :</p>
<pre><code>$(document).ready(function()
{
$('#AllAirlines option').dblclick(AddAirline);
}
function AddAirline()
{
$('#AllAirlines option:selected').remove().appendTo('#AirlineList');
}
</code></pre>
<p>Which works fine in FireFox... but in IE8 etc, fails. Any ideas why?</p>
http://stackoverflow.com/questions/1802540/apparent-memory-leak-in-web-application-maybe-from-ajax1Apparent memory leak in web application (maybe from AJAX?)Gausie2009-11-26T09:20:59Z2009-11-26T09:57:59Z
<p>Hi all</p>
<p>I'm running an AJAX request from a JavaScript-powered (+jQuery) webpage every 5 seconds for a set of JSON data. I left my application on overnight, and by morning my computer had completely frozen. I narrowed it down to my web browser and now, using Google Chrome's Resource Tracker, I can see that each request contributes a new memory expenditure, and the old JSON lingers.</p>
<p>As the source JSON is constantly changing, I call it with the timestamp as a parameter, to avoid caching... I realise caching would solve this problem, but it would also make my data invalid. </p>
<p>Any ideas? I'm overwriting the previous variable, so I don't see why the previous data should be retained. The memory increases don't happen at the same interval at the AJAX requests, so maybe its something else. I'd be happy to send someone the code privately, if it would help.</p>
<p>Thanks all :-)</p>
<p>Gausie</p>
http://stackoverflow.com/questions/1802612/name-of-the-site-which-have-multilanguage-option-i-want-solution-in-asp-2name of the site which have Multilanguage option ? i want solution in aspNeerav Chauhan 2009-11-26T09:37:44Z2009-11-26T09:54:23Z
<p>i want the name of the websites in which options for multi languages available....</p>
<p>EX...
English,
Turki,
Dutch,
By selecting English The websites contents should be in English language..</p>
<p>Thanks</p>
<p>And how can i use that functionality in asp....</p>
http://stackoverflow.com/questions/1802478/running-v8-javascript-engine-standalone3Running V8 Javascript Engine StandaloneManuel2009-11-26T09:10:42Z2009-11-26T09:38:27Z
<p>I want to run a Javascript console on top of V8. How do I do this?</p>
http://stackoverflow.com/questions/1794974/using-js-how-can-i-stop-child-iframes-from-redirecting-or-at-least-prompt-users1Using JS how can I stop child Iframes from redirecting or at least prompt users about the redirectRitesh M Nayak2009-11-25T06:05:56Z2009-11-26T09:34:13Z
<p>Many sites have scripts similar to the one below. These are put to stop other people from framing the sites. </p>
<pre><code>if (top.location != location) {
top.location.href = document.location.href ;
</code></pre>
<p>}</p>
<p>I need some way to realize that the iframe is trying to redirect, and if it is , I will remove the iFrame and instead place a link to the site. This way, I don't violate the usage policy of the framed website and also link to the site. I understand you can use the onbeforeunload event as discussed <a href="http://stackoverflow.com/questions/752465/preventing-child-iframe-from-breaking-out-of-frame">here</a> and <a href="http://stackoverflow.com/questions/958997/frame-buster-buster-buster-code-needed">here</a> but both seem really unethical. I remember reading somewhere about a library that does the exact same thing (digg does the same thing). Any leads? </p>
http://stackoverflow.com/questions/1801939/best-practises-to-convey-paramaters-from-javascript-jquery-to-a-java-based-rest0Best practises to convey paramaters from JavaScript (jQuery) to a Java based REST service?unknown (google)2009-11-26T06:47:10Z2009-11-26T09:29:43Z
<p>I have made a jQuery based widget which is configured a bit like this:</p>
<pre><code>jQuery("#foo").widget("service", {
output : "test_output_field",
parameters : {'format' : 'json',
'limit' : 20,
'services' : {'service1' : {},
'service2' : {'language' : 'en', 'type' : 'solid', 'parent' : 'father'},
'service3' : {'type' : 'big', 'strict' : 'true', 'filter' : 'all' }
}
}
});
</code></pre>
<p>The parameters like 'format' and 'limit' are easy to handle; I just put them in the query string. </p>
<p>The services configuration part is the problem. Only thing that is constant is that there is an arbitrary number of services (here 'service1-3') with varying amount of parameters (specific to a certain service). </p>
<p>I have tried to configure them in a JSON string, but the parsers that are available for Java are horrible at best. I could parse the configuration to url parameters (like &service2_language=en), but the url could grow too long to handle.</p>
<p>What would you do?</p>
http://stackoverflow.com/questions/1802425/set-a-value-to-a-textbox-which-had-focus-in-javascript0set a value to a textbox which had focus in javascriptPandiya Chendur2009-11-26T09:00:04Z2009-11-26T09:25:03Z
<p>Hai guys,
I have three textboxes and one listbox... If the user clicks the first textbox and then click a list item the selected item must be set as value to the textbox... I want this in javascript....</p>
http://stackoverflow.com/questions/658912/reenabling-javascript-debugger-in-ie7-with-visual-studio-20082(Re)Enabling JavaScript debugger in IE7 with Visual Studio 2008masterik2009-03-18T16:00:31Z2009-11-26T09:15:53Z
<p>Visual Studio 2008 comes with nice javascript debugging features.</p>
<p>But I have played a little with NetBeans debugger wich has installed an ugly Script Debugger from Microsoft to my IE... Normally IE should ask what do I want to use for debugging, but now I can't start debugging with Visual Studio, the Script Debugger is started automatically... After uninstalling the Script Debugger I can't debug in IE at all. Even attaching to iexplore.exe process doesn't helps...</p>
<p>Has installed the Script Debugger again... :(((((</p>
<p>How can I get back my Visual Studio debugging working in IE again?</p>
http://stackoverflow.com/questions/1802398/function-only-works-on-one-div0Function only works on one div?Moses2009-11-26T08:55:04Z2009-11-26T09:04:08Z
<p>I am stuck... I can't seem to get a function to fire off on the divs below the first one.... any suggestions?</p>
http://stackoverflow.com/questions/1801952/why-do-only-certain-feeds-get-recovered-from-google-reader0Why do only certain feeds get recovered from google reader?Andrew C2009-11-26T06:52:14Z2009-11-26T09:04:08Z
<p>I want to parse the results of a public google reader feed of mine. I am writing an app in gwt and up to this point I had been following an example with the line:</p>
<pre><code>String gdata =
"http://www.google.com/base/feeds/snippets?alt=json-in-script&callback=";
</code></pre>
<p>The feed is retrieved,</p>
<pre><code>public void handle(JavaScriptObject jso) {
JSONObject json = new JSONObject(jso);
JSONArray ary = json.get("feed").isObject().get("entry").isArray();
Window.alert(json.toString());
}
</code></pre>
<p>and the data is displayed on the panel + i see it in the alert window. However, when I change the url so that I can use my feed rather than an example, nothing works.</p>
<p>Here are some of the ways I've tried to format my url:</p>
<pre><code>http://www.google.com/reader/public/javascript/feed/http://www.google.com/reader/public/atom/user%2F17524205173321155204%2Flabel%2Fpub?alt=json-in-script&callback=
http://www.google.com/reader/public/javascript/feed/http://www.google.com/reader/public/atom/user%2F11035509885961399965%2Fstate%2Fcom.google%2Fbroadcast?callback=?
http://www.google.com/reader/public/javascript/feed/http://www.google.com/reader/public/atom/user%2F11035509885961399965%2Fstate%2Fcom.google%2Fbroadcast?callback=?
</code></pre>
<p>Ostensibly the feeds are the same except for the example one that works has all the text on a single long line where the others have whitespace. Could this be causing an issue? What can I do to get around it?</p>
<p>I want to run regular expressions against the data im getting back from the feed. is there a better way to do this? </p>
<p>Thank you very much!</p>
http://stackoverflow.com/questions/1802275/how-to-reverse-the-effect-of-the-following-execution-by-using-javascript0How to reverse the effect of the following execution by using Javascript?Steven2009-11-26T08:24:24Z2009-11-26T08:54:35Z
<pre><code>javascript:void(document.cookie=”PREF=ID=20b6e4c2f44943bb:U=4bf292d46faad806:TM=1249677602:LM=1257919388:S=odm0Ys-53ZueXfZG;path=/; domain=.google.com”);
</code></pre>
<p>How to eliminate the result of the statement above by writing another Javascript statement?</p>
http://stackoverflow.com/questions/1802210/how-to-recover-google-classic-design-from-its-new-design0How to recover Google classic design from its new design?Steven2009-11-26T08:07:25Z2009-11-26T08:16:24Z
<p>I typed this into my address bar:</p>
<pre><code>javascript:void(document.cookie=”PREF=ID=20b6e4c2f44943bb:U=4bf292d46faad806:TM=1249677602:LM=1257919388:S=odm0Ys-53ZueXfZG;path=/; domain=.google.com”);
</code></pre>
<p>However, I don't like the new design of Google. How to switch back? How to cancel this effect using Javascript? How to reverse by using Javascript?</p>
http://stackoverflow.com/questions/1801868/persistent-urls-with-a-jquery-slider0Persistent URLs with a jQuery Sliderbryceroney2009-11-26T06:24:00Z2009-11-26T08:10:20Z
<p>Hello,</p>
<p>I've created a simple jQuery slider for my website, and I was wondering if it's possible to assign a URL for each pane.</p>
<p>For example /index.html#about will slide to the about tab by default.</p>
<p>Many thanks for your help and responses.</p>
http://stackoverflow.com/questions/1801960/innerhtml-working-in-ff-but-not-in-ie0innerHTML working in FF but not in IE!Rakesh Juyal2009-11-26T06:53:33Z2009-11-26T08:08:08Z
<p>In my JSP i am using a custom tag <code><showDateFormat/></code><br>
like: </p>
<pre><code>Date From:<showDateFormat/>
</code></pre>
<p>and in my common.js file i am having</p>
<pre><code>function addDateFormatInfo(){
var dateFormatHolder = document.getElementsByTagName("showDateFormat");
if ( dateFormatHolder ){
for ( i = 0 ; i < dateFormatHolder.length; i++ ){
dateFormatHolder[i].innerHTML = '<div class="infoSmall" ><span>(mm/dd/yyyy)</span></div>';
}
}
}
</code></pre>
<p>so in my page wherever there is <code>showDateFormat</code> tag is used, it will display <code>(mm/dd/yyyy)</code>. It is working fine in FF, but not in IE. what could be the problem?</p>
http://stackoverflow.com/questions/1795235/any-library-to-convert-richtext-to-html0Any library to convert richtext to html.RPK2009-11-25T07:30:52Z2009-11-26T07:46:48Z
<p>At present I am using <a href="http://code.google.com/p/widgeditor/" rel="nofollow">widgEditor</a></p>
<p>It is a good library in JavaScript but has some minor issues. Is there any other library that can convert a Rich Text into an HTML equivalent?</p>
http://stackoverflow.com/questions/1768581/flash-vs-excanvas-vs-svg-vml2Flash vs. (Ex)Canvas vs. SVG/VMLCrimson2009-11-20T05:54:44Z2009-11-26T07:34:28Z
<p>Hi Guys,</p>
<p>If you were to design a graphics-heavy interactive web application (say a game like Mario Bros.) today, which of the three available technologies would you prefer - Flash, (Ex)Canvas or SVG/VML?</p>
<p>What parameters would you consider and how would you rate these technologies on each parameter? I can think of the following:</p>
<p>a) Speed of rendering
b) Versatility (Separate DOM support etc.)
c) Browser support (current and expected)
d) Developer Community Support</p>
http://stackoverflow.com/questions/1802066/problems-with-decodeuri-with-characters0problems with decodeURI with %^ charactersbala2009-11-26T07:25:26Z2009-11-26T07:27:08Z
<p>Code:</p>
<pre><code><script type="text/javascript">
var uri**="%^my test**.asp?name=ståle&car=saab";
document.write(decodeURI(uri));
</script>
</code></pre>
<p>Error:</p>
<pre><code>Line: 6
Error: The URI to be decoded is not a valid encoding
</code></pre>
<p>is there anyway of decoding the combinations like %^ before calling the actual decodeURI</p>
http://stackoverflow.com/questions/1802050/helo-my-name-is-8helo my name is [closed]helo2009-11-26T07:22:00Z2009-11-26T07:22:00Z
<p>helo my name is helo my name is helo my name is helo my name is</p>
http://stackoverflow.com/questions/1801957/what-exactly-does-closure-refer-to-in-javascript2What exactly does "closure" refer to in JavaScript?Andreas Grech2009-11-26T06:52:57Z2009-11-26T07:09:09Z
<p>I understand what closures are, but I am having some trouble grokking exactly what the term <code>closure</code> refers to. I have seen the term used in many websites, but rarely do they agree on the actual definition of it.</p>
<ul>
<li>Is it the variables that are kept on the stack frame?</li>
<li>Is it the function that is being returned?</li>
<li>Is it the scope of the outer function?</li>
<li>Is it the scope of the inner (returned) function?</li>
<li>Is it maybe the <strong>concept</strong> of keeping the variables on the stack-frame after returning the function?</li>
</ul>
<p>Can someone tell me exactly to what <code>closure</code> refers to?</p>