First  |  Prev |  Next  |  Last
Pages: 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
Regexp: Case-insensitive matching | N factorial
On Jun 26, 8:31 am, gentsqu...(a)gmail.com wrote: In a setting where I can specify only a JS regular expression, but not the JS code that will use it, I seek a regexp component that matches a string of letters, ignoring case. E.g, for "cat" I'd like the effect of ([Cc][Aa][Tt]) but withou... 26 Jun 2008 17:43
splice an array into another array
MSDN says splice has the following arguments: arrayObj.splice(start, deleteCount, [item1[, item2[, . . . [,itemN]]]]) Thus I can insert items into an array using splice. But how do I insert an entire array? For example: var arr1 = []; arr1[0] = "a"; arr2[1] = "d"; var arr2 = []; arr2[0] = "b"; arr2[1... 25 Jun 2008 20:09
FAQ Topic - Why does K = parseInt('09') set K to 0? (2008-06-26)
----------------------------------------------------------------------- FAQ Topic - Why does K = parseInt('09') set K to 0? ----------------------------------------------------------------------- The parseInt function decides what base to convert a number represented as a string to by looking at the string. It a... 25 Jun 2008 19:08
Regexp: Case-insensitive matching | N factorial
In a setting where I can specify only a JS regular expression, but not the JS code that will use it, I seek a regexp component that matches a string of letters, ignoring case. E.g, for "cat" I'd like the effect of ([Cc][Aa][Tt]) but without having to have many occurrences of [Xx]. Secondly, what is ... 26 Jun 2008 13:35
repeated XMLHttpRequest GETs and displaying result
I'm a bit new to javascript - as will be obvious below. I'm using an XMLHttpRequest to get a bit of data from server (django), and it works nicely for single events. But my eventual outcome needs to be a series of data transmissions. I figured requesting data over and over until the data is some value that trig... 29 Jun 2008 05:00
window.open problem
Have been successfully using the following to open a pop-up for some time function msg(url) { window.open(url,'msg','scrollbars=yes,menubar=yes,width=750,height=400,resizable=yes,toolbar=yes,location=yes,status=yes') } Works fine on IE6 & Firefox, but IE7 opens a new tab obscuring the calling page. How can... 25 Jun 2008 20:09
waiting on GM_xmlhttprequest to finish
(sorry, this is probably slightly offtopic here and would be more appropriate in greasemonkey-users Google Group, but I haven't got any reply there when posted; I guess, it would work exactly the same with plain xmlhttprequest, not only the GM_* one; actually, thinking about it, I can use plain xmlhttprequest, beca... 25 Jun 2008 11:54
trying to loop an xml page from ajax
Got this code, which works fine in FF3 - it dynamically redraws a menu from user input. #### function so_clearInnerHTML(obj) { // so long as obj has children, remove them while(obj.firstChild) obj.removeChild(obj.firstChild); } - this just for info - ignore that there is no function around the next bit! i... 25 Jun 2008 13:58
Is there any javascript function available to auto resize swf
Can any one know the javascript function to auto resize the swf when resizing its pop up window. I need to auto resize the swf when i resize my popup window in which the swf is displayed. Is there any javascript function available to perform this requirement ? ... 26 Jun 2008 08:25
newbie: validator?
Could you recommend me some free JavaScript validator? I was using JSlint but it reports nonsense errors. Please help. Thanks. /RAM/ ... 25 Jun 2008 13:58
First  |  Prev |  Next  |  Last
Pages: 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81