User CMS - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T18:46:02Zhttp://stackoverflow.com/feeds/user/5445http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1804438/jquery-callback-question/1804452#18044522Answer by CMS for JQuery callback questionCMS2009-11-26T15:50:21Z2009-11-26T15:50:21Z<p>The callback functions all refer to the same <code>i</code> variable, and they are executed when the loop is finished.</p>
<p>You have to capture the <code>i</code> variable on the loop:</p>
<pre><code>for (i=o;i<types.length;i++) {
(function (i) {
$('#ajax'+types[i]+'Div').html('Loading...').load('searchAjax.php','new=u',
function () {
$(this).find('select').change( function() { AjaxDiv(i); } )
} );
})(i);
}
</code></pre>
http://stackoverflow.com/questions/1801499/how-to-change-options-of-select-with-jquery/1801515#18015155Answer by CMS for How to change options of <select > with jQuery?CMS2009-11-26T04:21:53Z2009-11-26T05:45:10Z<p>You can remove the existing options by using the <a href="http://docs.jquery.com/Manipulation/empty" rel="nofollow"><code>empty</code></a> method, and then add your new options:</p>
<pre><code>var option = $('<option></option>').attr("value", "option value").text("Text");
$("#selectId").empty().append(option);
</code></pre>
<p>If you have your new options in an object you can:</p>
<pre><code>var newOptions = {"Option 1": "value1",
"Option 2": "value2",
"Option 3": "value3"
};
var $el = $("#selectId");
$el.empty(); // remove old options
$.each(newOptions, function(key, value) {
$el.append($("<option></option>")
.attr("value", value).text(key));
});
</code></pre>
<p><strong>Edit:</strong> For removing the all the options but the first, you can use the <a href="http://docs.jquery.com/Selectors/gt" rel="nofollow"><code>:gt</code></a> selector, to get all the <code>option</code> elements with index greater than zero and <a href="http://docs.jquery.com/Manipulation/remove" rel="nofollow"><code>remove</code></a> them:</p>
<pre><code>$('#selectId option:gt(0)').remove(); // remove all options, but not the first
</code></pre>
http://stackoverflow.com/questions/1800940/validating-forms-in-javascript/1800949#18009491Answer by CMS for Validating Forms in JavascriptCMS2009-11-26T00:40:11Z2009-11-26T00:40:11Z<p>You can chance your regular expression to accept only numeric digits (only integer numbers):</p>
<pre><code>function testField(field) {
var regExpr = /^[0-9]+$/;
if (!regExpr.test(field.value)) {
// Case of error
field.value = "";
}
}
</code></pre>
http://stackoverflow.com/questions/1800853/is-there-any-similar-javadocs-script-tool-for-javascript-files/1800927#18009272Answer by CMS for Is there any similar JAVADOCS script/tool for Javascript files?CMS2009-11-26T00:32:11Z2009-11-26T00:32:11Z<p>The JSDoc project is no longer active, you should give a look to <a href="http://code.google.com/p/jsdoc-toolkit/" rel="nofollow">JsDoc Toolkit</a>.</p>
<p>You might also want to check the following alternatives:</p>
<ul>
<li><a href="http://developer.yahoo.com/yui/yuidoc/" rel="nofollow">YUIDoc</a></li>
<li><a href="http://pdoc.org/" rel="nofollow">PDoc</a></li>
</ul>
http://stackoverflow.com/questions/1799184/how-to-add-array-element-values-with-javascript/1799194#17991944Answer by CMS for how to add array element values with javascript ?CMS2009-11-25T18:57:14Z2009-11-25T18:57:14Z<p>Sounds like your array elements are Strings, try to convert them to Number when adding:</p>
<pre><code>var total = 0;
for (var i=0; i<10; i++){
total += +myArray[i];
}
</code></pre>
<p>Note that I use the unary plus operator (<code>+myArray[i]</code>), this is one common way to make sure you are adding up numbers, not concatenating strings.</p>
http://stackoverflow.com/questions/1798828/accessing-parameters-and-events-in-function-from-jquery-event/1798914#17989142Answer by CMS for Accessing Parameters *and* Events in function from jQuery EventCMS2009-11-25T18:14:14Z2009-11-25T18:19:53Z<p>You can <a href="http://en.wikipedia.org/wiki/Currying" rel="nofollow"><em>curry</em></a> or partially apply your function:</p>
<p>Something like this:</p>
<pre><code>function functionToCall($clickedItem) {
return function (ev) {
// both accessible here
alert(ev.type);
alert($clickedItem.attr('id'));
}
}
</code></pre>
<p>Then you can use it like you want:</p>
<pre><code>$item.live("click", functionToCall($(this));
</code></pre>
<p><strong>Note:</strong> If you can't modify your original <code>functionToCall</code> because is "external", you can wrap it:</p>
<pre><code>function wrapFunctionToCall($clickedItem) {
return function (ev) {
// call original function:
functionToCall(ev, $clickedItem);
}
}
// ...
$item.live("click", wrapFunctionToCall($(this));
</code></pre>
http://stackoverflow.com/questions/1798545/how-to-escape-a-double-quote-in-inline-c-script-within-javascript/1798557#17985576Answer by CMS for How to escape a double-quote in inline c# script within javascript?CMS2009-11-25T17:25:29Z2009-11-25T17:25:29Z<p>You can simply use <em>single quotes</em> in JavaScript to define <a href="https://developer.mozilla.org/en/Core%5FJavaScript%5F1.5%5FGuide/Literals#String%5FLiterals" rel="nofollow">String literals</a>:</p>
<pre><code>var inputId = '<%= applicationForm.FindControl("myInput").ClientID %>';
</code></pre>
http://stackoverflow.com/questions/1795183/jquery-ajax-on-different-port/1795225#17952250Answer by CMS for jQuery Ajax on Different PortCMS2009-11-25T07:27:35Z2009-11-25T07:27:35Z<p>Implementing a JSONP service is really simple, you need only a <em>callback</em> GET parameter and at the end, print a string containing the equivalent to a function call with the JSON data as the argument:</p>
<pre><code>$callback = $_GET["callback"];
$user = $_GET["username"];
if($user == "lazy") {
$response = array("message" => "SUCESS");
} else {
$response = array("message" => "FAIL");
}
echo $callback . "(". json_encode($response) . ");";
</code></pre>
<p>Then you can use it with jQuery <a href="http://docs.jquery.com/Ajax/jQuery.getJSON" rel="nofollow"><code>$.getJSON</code></a>:</p>
<pre><code>$.getJSON("jsonpTest.php?callback=?", { username: "lazy"}, function(json){
alert("JSON Data: " + json.message); // SUCCESS
});
</code></pre>
http://stackoverflow.com/questions/1795089/need-help-with-jquery-to-javascript/1795167#17951672Answer by CMS for Need help with jQuery to JavaScriptCMS2009-11-25T07:11:45Z2009-11-25T07:11:45Z<p>If you want to reproduce the jQuery's <code>document.ready</code> event, you can use the <a href="http://msdn.microsoft.com/en-us/library/ms536957%28VS.85%29.aspx" rel="nofollow"><code>onreadystatechange</code></a> or <a href="https://developer.mozilla.org/En/Gecko-Specific%5FDOM%5FEvents#DOMContentLoaded" rel="nofollow"><code>DOMContentLoaded</code></a> events where applicable:</p>
<pre><code>function domReady () {
document.body.className += " javascript";
// ...
}
// Mozilla, Opera, Webkit
if ( document.addEventListener ) {
document.addEventListener( "DOMContentLoaded", function(){
document.removeEventListener( "DOMContentLoaded", arguments.callee, false);
domReady();
}, false );
// If IE event model is used
} else if ( document.attachEvent ) {
// ensure firing before onload
document.attachEvent("onreadystatechange", function(){
if ( document.readyState === "complete" ) {
document.detachEvent( "onreadystatechange", arguments.callee );
domReady();
}
});
}
</code></pre>
http://stackoverflow.com/questions/1795100/how-to-exit-from-setinterval-in-jquery/1795107#17951073Answer by CMS for how to exit from setInterval in JqueryCMS2009-11-25T06:55:57Z2009-11-25T06:55:57Z<p>Use <a href="https://developer.mozilla.org/en/window.clearInterval" rel="nofollow">clearInterval</a>:</p>
<pre><code>var refreshId = setInterval(function() {
var properID = CheckReload();
if (properID > 0) {
clearInterval(refreshId);
}
}, 10000);
</code></pre>
http://stackoverflow.com/questions/1794932/extract-section-from-json-in-jquery/1794973#17949731Answer by CMS for Extract section from json in jqueryCMS2009-11-25T06:05:52Z2009-11-25T06:05:52Z<p>If you have literally a <em>"JSON string"</em> as you say, you could use a regular expression to extract that part of the object:</p>
<pre><code>jsonString.match(/"stringMap":({.*}),/)[1];
// returns '{":id":"50",":question":"My roof"}'
</code></pre>
<p>If you have a <em>JSON object</em>, and you want a string representation of your sub-object, you can access the <code>stringMap</code> member directly, and use a JSON library like <a href="http://www.json.org/json2.js" rel="nofollow">json2</a>, to <em>strigify</em> it:</p>
<pre><code>JSON.stringify(jsonObj.stringMap);
</code></pre>
http://stackoverflow.com/questions/1794875/jquery-matching-id-with-a-in-it/1794885#17948854Answer by CMS for jQuery matching ID with a ' = ' in itCMS2009-11-25T05:38:35Z2009-11-25T05:38:35Z<p>Well, at first I want to notice that the equal sign is not a valid character for the <a href="http://www.w3.org/TR/html4/types.html#type-id" rel="nofollow">ID attribute</a>, it can still be used, but you might have unexpected behavior between different browsers.</p>
<blockquote>
<blockquote>
<p>ID and NAME tokens must begin with a letter ([A-Za-z]) and may be followed by any number of letters, digits ([0-9]), hyphens ("-"), underscores ("_"), colons (":"), and periods (".").</p>
</blockquote>
</blockquote>
<p>About jQuery, the <code>=</code> character on selectors must be escaped by a double back-slash:</p>
<pre><code>$('#Test\\=Test');
</code></pre>
<p>More info:</p>
<ul>
<li><a href="http://docs.jquery.com/Selectors#Special%5Fcharacters%5Fin%5Fselectors" rel="nofollow">Special characters in selectors</a></li>
</ul>
<p>The full list of characters that need to be escaped: <code>#;&,.+*~':"!^$[]()=>|/</code></p>
http://stackoverflow.com/questions/1794822/remove-last-character-in-id-attribute/1794854#17948543Answer by CMS for remove last character in id attributeCMS2009-11-25T05:30:59Z2009-11-25T05:30:59Z<p>You can select all the divs that have an id attribute, and check if the <code>/</code> character is present at the end, and then remove it:</p>
<pre><code>$('div[id]').each(function(){
var id = $(this).attr('id');
if (id.indexOf('/') == id.length-1) {
$(this).attr('id', id.slice(0, -1));
// or $(this).attr('id', id.substring(0, id.length-1));
}
});
</code></pre>
http://stackoverflow.com/questions/1794776/how-can-we-convert-a-string-2007-01-to-date-in-javascript/1794799#17947992Answer by CMS for How can we convert a string (2007-01) to date in javascript?CMS2009-11-25T05:14:57Z2009-11-25T05:14:57Z<p>You can use either a regular expression or use the <code>String.split</code> function to get the date parts and correctly build a <a href="https://developer.mozilla.org/en/Core%5FJavaScript%5F1.5%5FReference/Objects/Date" rel="nofollow">Date</a> object:</p>
<pre><code>// RegExp approach:
function parseDate(input) {
var parts = input.match(/(\d+)/g);
return new Date(parts[0], parts[1]-1, parts[2] || 1); // months are 0-based
}
parseDate('2007-01');
// Mon Jan 01 2007 00:00:00
// String.split approach:
function parseDate(input, separator) {
var parts = input.split(separator);
return new Date(parts[0], parts[1]-1, parts[2] || 1);
}
parseDate('2007-01', '-');
// Mon Jan 01 2007 00:00:00
</code></pre>
<p>The above functions can take complete dates (<code>yyyy-mm-dd</code>) or only month dates as you want (<code>yyyy-mm</code>), if the day date part is <em>not present</em>, the first day of the month is assigned.</p>
http://stackoverflow.com/questions/1794597/effective-java-for-c/1794612#17946126Answer by CMS for Effective Java for C#CMS2009-11-25T04:24:12Z2009-11-25T04:24:12Z<p>Since you want something in the same line of <em>Effective Java</em> the following two books are very similar:</p>
<p><a href="http://rads.stackoverflow.com/amzn/click/0321245660" rel="nofollow"> Effective C#</p>
<p><img src="http://img253.imageshack.us/img253/8619/0321245660aa6.jpg" width="200"/>
</a></p>
<p><a href="http://rads.stackoverflow.com/amzn/click/0321485890" rel="nofollow"> More Effective C#</p>
<p><img src="http://images.amazon.com/images/P/0321485890.MZZZZZZZ.jpg" width="200"/>
</a></p>
http://stackoverflow.com/questions/1794157/i-want-a-function-to-be-fired-whenever-one-option-of-a-radio-element-is-checked/1794572#17945721Answer by CMS for I want a function to be fired whenever one option of a radio element is checked. The radio elements are dynamically created by using JqueryCMS2009-11-25T04:14:56Z2009-11-25T04:14:56Z<p>Since the <code>radio</code> elements are created programmatically your selector cannot find them, because they don't exist yet.</p>
<p>You could either, bind the <code>click</code> event when you create the elements as <a href="http://stackoverflow.com/questions/1794157/i-want-a-function-to-be-fired-whenever-one-option-of-a-radio-element-is-checked/1794275#1794275">@Justin</a> suggests, or could use <a href="http://docs.jquery.com/Events/live" rel="nofollow">live</a>:</p>
<pre><code>$('input:radio').live('click', function () {
if (this.checked) { // or $(this).attr('checked')
alert(this.value); // or alert($(this).val());
}
});
</code></pre>
<p>The <code>live</code> function binds an event handler for all current <em>and future</em> matched elements, using <a href="http://www.sitepoint.com/blogs/2008/07/23/javascript-event-delegation-is-easier-than-you-think/" rel="nofollow">event delegation</a>.</p>
<p>It currently supports the following events: <code>click</code>, <code>dblclick</code>, <code>mousedown</code>, <code>mouseup</code>, <code>mousemove</code>, <code>mouseover</code>, <code>mouseout</code>, <code>keydown</code>, <code>keypress</code>, <code>keyup</code>.</p>
http://stackoverflow.com/questions/1788387/trouble-submitting-many-variables-in-jquery-ajax-to-php/1788407#17884071Answer by CMS for Trouble submitting many variables in jquery ajax to phpCMS2009-11-24T07:19:32Z2009-11-24T07:19:32Z<p>You have missing <code>+</code> signs in your concatenation:</p>
<pre><code>var dataString = 'comsn=' + comsn + '&comrn=' + comrn +
'&compic=' + compic + '&comment=' + comment +
'&eventid=' + eventid + '&comuserid=' + comuserid +
'&owner=' + owner;
</code></pre>
<p>However if you want to get all your form element values in a string of data, you could use the <a href="http://docs.jquery.com/Ajax/serialize" rel="nofollow">Ajax/serialize</a> method:</p>
<pre><code>var dataString = $("#formId").serialize();
</code></pre>
http://stackoverflow.com/questions/1788276/i-want-a-function-to-be-fired-whenever-one-option-of-a-radio-element-is-checked/1788285#17882853Answer by CMS for I want a function to be fired whenever one option of a radio element is checked. How to do it using Jquery?CMS2009-11-24T06:45:39Z2009-11-24T06:45:39Z<p><code>checked</code> is not an event, you should use <a href="http://docs.jquery.com/Events/click" rel="nofollow"><code>click</code></a> or <a href="http://docs.jquery.com/Events/change" rel="nofollow"><code>change</code></a>.</p>
<p>Also I want to notice that is recommended to use <code>input:radio</code> instead of only <code>:radio</code>, because that <a href="http://docs.jquery.com/Selectors/radio" rel="nofollow">pseudo-selector</a> will be evaluated as <code>*:radio</code> and it can be quite slow:</p>
<pre><code>$('input:radio').click(function () {
if (this.checked) { // or $(this).attr('checked')
alert(this.value); // or alert($(this).val());
}
});
</code></pre>
http://stackoverflow.com/questions/1788203/jquery-selection-of-elements-created-run-time/1788218#17882182Answer by CMS for jQuery Selection of elements created run timeCMS2009-11-24T06:27:18Z2009-11-24T06:32:28Z<p>The anchor elements don't exists yet when the <code>click</code> event handler is bound, but you can use the <a href="http://docs.jquery.com/Events/live" rel="nofollow"><code>live</code></a> method, which uses <a href="http://www.sitepoint.com/blogs/2008/07/23/javascript-event-delegation-is-easier-than-you-think/" rel="nofollow">event delegation</a>:</p>
<pre><code>$(document).ready(function(){
$("#div1 a").live('click', function(){
// do something
});
});
</code></pre>
<p><code>live</code> will match current <em>and future</em> elements on the DOM.</p>
http://stackoverflow.com/questions/1785274/what-happened-to-the-jquery-contains-traversal-method/1785356#17853563Answer by CMS for What happened to the jQuery "contains" traversal method?CMS2009-11-23T19:19:56Z2009-11-23T19:19:56Z<p>It was deprecated on 1.2, and completely replaced by the filter expression on 1.3.</p>
<p>More info:</p>
<ul>
<li><a href="http://docs.jquery.com/Release%3AjQuery%5F1.2#Removed%5FFunctionality" rel="nofollow">Removed Functionality</a></li>
</ul>
http://stackoverflow.com/questions/1784780/how-to-break-out-of-jquerys-each-loop/1784792#17847923Answer by CMS for How to Break out of Jquery's Each LoopCMS2009-11-23T17:46:33Z2009-11-23T17:46:33Z<p>To <code>break</code> a <a href="http://docs.jquery.com/Core/each" rel="nofollow"><code>$.each</code></a> loop, you have to return <code>false</code> in the loop callback.</p>
<p>Returning <code>true</code> skips to the next iteration, equivalent to a <code>continue</code> in a normal loop.</p>
http://stackoverflow.com/questions/1781362/jquery-and-multiple-radio-button-groups-problem/1781399#17813992Answer by CMS for JQuery and multiple radio button groups problemCMS2009-11-23T06:16:52Z2009-11-23T06:16:52Z<p>Be aware that in jQuery 1.3 [@attr] style selectors were removed.</p>
<p>The selector will work as expected if you remove the @ sign.</p>
<p>But you could actually handle the click event for both groups:</p>
<pre><code>$("input:radio").click(function() {
if (this.name == "group_1") {
// group 1 clicked
} else if (this.name == "group_2") {
// group 2 clicked
}
});
</code></pre>
http://stackoverflow.com/questions/1781343/why-are-php-tags-not-closed-in-drupal/1781350#17813508Answer by CMS for Why are php tags not closed in drupal?CMS2009-11-23T06:03:51Z2009-11-23T06:03:51Z<p>Omitting the closing tag prevents the accidental injection of trailing white space into the response.</p>
<p>Is a common coding practice in some Frameworks, like <a href="http://framework.zend.com/manual/en/coding-standard.php-file-formatting.html" rel="nofollow">Zend</a>.</p>
http://stackoverflow.com/questions/1780670/how-to-jquery-show-only-a-particular-td-from-this-table-structure/1780683#17806835Answer by CMS for How to Jquery show only a particular td from this table structure?CMS2009-11-23T01:22:47Z2009-11-23T02:03:44Z<p>You can combine the <a href="http://docs.jquery.com/Selectors/has" rel="nofollow"><code>:not</code></a> and <a href="http://docs.jquery.com/Selectors/has" rel="nofollow"><code>:has</code></a> pseudo-selectors:</p>
<pre><code>$('.wba_main_table tr:not(:has(td.wba_topnavBG))').hide();
</code></pre>
<p>This selector will match all the <code>tr</code> elements that do not contain a <code>td</code> element with class <code>wba_topnavBG</code>.</p>
<p>Check an example with your markup <a href="http://jsbin.com/awowi" rel="nofollow">here</a>.</p>
<p><strong>Edit:</strong> In response to your comment, if you have a table inside that <code>td</code>, and you only want to select the direct <code>tr</code> descendants of <code>.wba_main_table</code>, you should use the <a href="http://docs.jquery.com/Selectors/child" rel="nofollow">parent > child</a> selector:</p>
<pre><code>$('.wba_main_table > tr:not(:has(td.wba_topnavBG))').hide();
</code></pre>
http://stackoverflow.com/questions/1777525/selecting-links-in-google-maps-infowindows-w-jquery/1777548#17775480Answer by CMS for Selecting Links in Google Maps InfoWindows w/ jQueryCMS2009-11-22T02:03:09Z2009-11-22T02:03:09Z<p>I think that the content of the infoWindows is injected to the DOM programmatically, when the window is shown up, so the links are not present when you execute your selector.</p>
<p>Try to bind the <code>click</code> event with <a href="http://docs.jquery.com/Events/live" rel="nofollow"><code>live</code></a>:</p>
<pre><code>$('a').live('click', function () {
// ..
});
</code></pre>
<p>The <code>live</code> method works with <a href="http://www.sitepoint.com/blogs/2008/07/23/javascript-event-delegation-is-easier-than-you-think/" rel="nofollow">event delegation</a>, and it will work for all the anchors present in the document.</p>
http://stackoverflow.com/questions/1777382/php-jsondecode-on-a-32bit-server/1777388#17773881Answer by CMS for PHP json_decode on a 32bit serverCMS2009-11-22T01:03:19Z2009-11-22T01:13:12Z<p>You can use <a href="http://php.net/manual/en/function.preg-replace.php" rel="nofollow"><code>preg_replace</code></a> to capture the numbers and add the quotes, something like this:</p>
<pre><code>$jsonString = '[{"name":"john","id":5932725006},{"name":"max","id":4953467146}]';
echo preg_replace('/("\w+"):(\d+)/', '\\1:"\\2"', $jsonString);
//prints [{"name":"john","id":"5932725006"},{"name":"max","id":"4953467146"}]
</code></pre>
<p>Try the above example <a href="http://codepad.org/hc0R9clY" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/1776431/what-tool-do-you-use-for-debugging-javascript/1776439#17764399Answer by CMS for What tool do you use for debugging Javascript?CMS2009-11-21T19:17:29Z2009-11-21T19:17:29Z<p>For Firefox <a href="http://getfirebug.com" rel="nofollow">Firebug</a> it's the best, has a lot of useful features, the <a href="http://getfirebug.com/console.html" rel="nofollow">Console API</a> is great, you can log, make assertions, profiling, timing and much more.</p>
<p>For IE, the <a href="http://msdn.microsoft.com/en-us/library/dd565628%28VS.85%29.aspx" rel="nofollow">Developer Tools</a> of IE 8 is better than nothing, for earlier versions of IE, try the <a href="http://www.microsoft.com/downloads/details.aspx?familyid=e59c3964-672d-4511-bb3e-2d5e1db91038&displaylang=en" rel="nofollow">Developer Toolbar</a>.</p>
<p>For Chrome and Safari, check the WebKit inspector and debugging <a href="http://blog.chromium.org/2009/06/developer-tools-for-google-chrome.html" rel="nofollow">tools</a>.</p>
http://stackoverflow.com/questions/1776252/value-is-the-variable-name-instead-of-the-contents-of-the-variable/1776260#17762603Answer by CMS for Value is the variable name instead of the contents of the variableCMS2009-11-21T18:15:45Z2009-11-21T18:28:49Z<p>You should build your object in two steps, and use the bracket notation <a href="https://developer.mozilla.org/en/Core%5FJavaScript%5F1.5%5FReference/Operators/Member%5FOperators" rel="nofollow">property accessor</a>:</p>
<pre><code>projects.init = function(){
for (var i = this.numBoxes - 1; i >= 0; i--){
var toInject = "item"+i,
obj = {};
obj[toInject] = "testdata";
this.datas[i] = obj;
};
}
</code></pre>
<p>The labels on object literals cannot be expressions.</p>
<p>As you can see, first you declare an empty <a href="https://developer.mozilla.org/en/Core%5FJavaScript%5F1.5%5FGuide/Literals" rel="nofollow">object literal</a>:</p>
<pre><code>var obj = {};
</code></pre>
<p>And then you set the property:</p>
<pre><code>obj[toInject] = "testdata";
</code></pre>
http://stackoverflow.com/questions/1775749/how-to-get-text-out-of-ptextinput-type-p/1775757#17757571Answer by CMS for How to get 'text' out of <p>Text<input type="... </p>CMS2009-11-21T15:22:42Z2009-11-21T15:22:42Z<p>In IE you should get the <a href="http://msdn.microsoft.com/en-us/library/ms533899%28VS.85%29.aspx" rel="nofollow"><code>innerText</code></a> property:</p>
<pre><code>function error(id){
var prnt = id.parentNode.childNodes[0],
parentColor = prnt.textContent || prnt.innerText,
trimmed = parentColor.replace(/\s+/g,'').replace((/\:$/),"").toLowerCase();
return trimmed;
}
</code></pre>
<p>Notice that I used the logical or operator (||), so if <code>textContent</code> is undefined (or falsy), it will look for the <code>innerText</code>.</p>
http://stackoverflow.com/questions/1774876/password-hashing-at-client-browser/1774887#17748871Answer by CMS for Password hashing at client browserCMS2009-11-21T07:56:47Z2009-11-21T07:56:47Z<p>Not all people have JavaScript enabled in their browsers and even the idea of sending hashes on a plain-text channel I think is not secure enough.</p>
<p>I would recommend you to consider a <a href="http://en.wikipedia.org/wiki/HTTP%5FSecure" rel="nofollow">SSL</a> secured connection.</p>
http://stackoverflow.com/questions/1804438/jquery-callback-question/1804452#1804452Comment by CMS on JQuery callback questionCMS2009-11-26T15:58:37Z2009-11-26T15:58:37ZYes, too many times, a FAQ by language would be nice... <a href="http://stackoverflow.com/questions/1734749/" rel="nofollow">stackoverflow.com/questions/1734749</a>
<a href="http://stackoverflow.com/questions/643542/" rel="nofollow">stackoverflow.com/questions/643542</a>
<a href="http://stackoverflow.com/questions/1582634/" rel="nofollow">stackoverflow.com/questions/1582634</a>
<a href="http://stackoverflow.com/questions/1331769/" rel="nofollow">stackoverflow.com/questions/1331769</a>
<a href="http://stackoverflow.com/questions/1552941/" rel="nofollow">stackoverflow.com/questions/1552941</a>
<a href="http://stackoverflow.com/questions/750486/" rel="nofollow">stackoverflow.com/questions/750486</a>
<a href="http://stackoverflow.com/questions/933343/" rel="nofollow">stackoverflow.com/questions/933343</a>
<a href="http://stackoverflow.com/questions/1579978/" rel="nofollow">stackoverflow.com/questions/1579978</a>
<a href="http://stackoverflow.com/questions/1413916/" rel="nofollow">stackoverflow.com/questions/1413916</a>http://stackoverflow.com/questions/1801499/how-to-change-options-of-select-with-jquery/1801515#1801515Comment by CMS on How to change options of <select > with jQuery?CMS2009-11-26T05:44:19Z2009-11-26T05:44:19Z@Crescent: Yeah, you're completely right, the lack of sleep is killing me hehe I haven't actually re-read my post :-) ... editing...http://stackoverflow.com/questions/1801614/jquery-change-event-in-opera-and-ie-setting-hidden-fieldsComment by CMS on jquery change event in opera and ie -- setting hidden fieldsCMS2009-11-26T04:59:27Z2009-11-26T04:59:27ZCould you post some code?http://stackoverflow.com/questions/1800940/validating-forms-in-javascript/1800949#1800949Comment by CMS on Validating Forms in JavascriptCMS2009-11-26T00:45:49Z2009-11-26T00:45:49ZYou're welcome @dohkoxar, BTW if you need to check negative integers, just add an optional <code>-</code> character to the RegExp: <code>/^-?[0-9]+$/</code>http://stackoverflow.com/questions/1799184/how-to-add-array-element-values-with-javascript/1799199#1799199Comment by CMS on how to add array element values with javascript ?CMS2009-11-25T19:32:54Z2009-11-25T19:32:54Z@abyx, if you don't use the radix argument. it will depend on the string, '0xFF' will be parsed to 255, '010' to 8, and so on...http://stackoverflow.com/questions/1798828/accessing-parameters-and-events-in-function-from-jquery-event/1798914#1798914Comment by CMS on Accessing Parameters *and* Events in function from jQuery EventCMS2009-11-25T18:44:44Z2009-11-25T18:44:44ZThanks @Brandon :)http://stackoverflow.com/questions/1795183/jquery-ajax-on-different-portComment by CMS on jQuery Ajax on Different PortCMS2009-11-25T07:18:54Z2009-11-25T07:18:54ZPossible duplicate: <a href="http://stackoverflow.com/questions/1768385/jquery-is-it-possible-to-specif-a-port-in-a-ajax-call" rel="nofollow" title="jquery is it possible to specif a port in a ajax call">stackoverflow.com/questions/1768385/…</a>http://stackoverflow.com/questions/1794822/remove-last-character-in-id-attribute/1794854#1794854Comment by CMS on remove last character in id attributeCMS2009-11-25T05:51:15Z2009-11-25T05:51:15Z@dcneiner, I thought about that, but since the <code>/</code> character is not valid for the ID attribute, he might have unexpected behavior on different browsers by using that selector... <a href="http://is.gd/536C6" rel="nofollow">is.gd/536C6</a>http://stackoverflow.com/questions/1794157/i-want-a-function-to-be-fired-whenever-one-option-of-a-radio-element-is-checked/1794572#1794572Comment by CMS on I want a function to be fired whenever one option of a radio element is checked. The radio elements are dynamically created by using JqueryCMS2009-11-25T05:10:59Z2009-11-25T05:10:59ZYou're welcome @Steven, glad to help.http://stackoverflow.com/questions/1788276/i-want-a-function-to-be-fired-whenever-one-option-of-a-radio-element-is-checked/1788285#1788285Comment by CMS on I want a function to be fired whenever one option of a radio element is checked. How to do it using Jquery?CMS2009-11-24T07:05:38Z2009-11-24T07:05:38ZWhich version of jQuery are you using? AFAIK, the <code>:radio</code> selector has been out there since the very early versions. You can check a sample of the code I posted, with your markup here: <a href="http://jsbin.com/utipo" rel="nofollow">jsbin.com/utipo</a>http://stackoverflow.com/questions/1787390/how-to-pass-dummy-jquery-object-to-javascript-function/1787400#1787400Comment by CMS on How to Pass Dummy jQuery Object to Javascript functionCMS2009-11-24T04:26:05Z2009-11-24T04:26:05ZYou can even call the function omitting the argument: <code>handleNotes("hide only");</code> and the <code>$item</code> argument will be <code>undefined</code> which will evaluate to <code>false</code> in the if statement.http://stackoverflow.com/questions/1781362/jquery-and-multiple-radio-button-groups-problem/1781399#1781399Comment by CMS on JQuery and multiple radio button groups problemCMS2009-11-23T06:27:27Z2009-11-23T06:27:27ZThanks dcneiner, the @attr selectors were <i>deprecated</i> on 1.2 and completely removed on 1.3http://stackoverflow.com/questions/1781307/website-hacking-why-it-is-always-possible-to-doComment by CMS on Website hacking - Why it is always possible to do?CMS2009-11-23T05:53:40Z2009-11-23T05:53:40Z"The only secure computer in the world is unplugged, encased in concrete, and buried underground — and even that one might be vulnerable." - Bruce Schneierhttp://stackoverflow.com/questions/1780670/how-to-jquery-show-only-a-particular-td-from-this-table-structure/1780683#1780683Comment by CMS on How to Jquery show only a particular td from this table structure?CMS2009-11-23T04:10:05Z2009-11-23T04:10:05ZYou're welcome, glad to help!http://stackoverflow.com/questions/1780670/how-to-jquery-show-only-a-particular-td-from-this-table-structure/1780683#1780683Comment by CMS on How to Jquery show only a particular td from this table structure?CMS2009-11-23T02:04:08Z2009-11-23T02:04:08ZCheck my edit :-)