Search Results

0
votes
4answers
1k views

How can I match multiple occurrences with a regex in JavaScript similar to PHP’s preg_match_all()?

I am trying to parse url-encoded strings that are made up of key=value pairs separated by either & or &. The following will only match the first occur …
0
votes

How to set up the browser scrollbar to scroll part of a page?

The browser is scrolling the page, its just that part of it is fixed in position. This is done by using the "position: fixed" CSS property on the part that you wish not to scroll. …
2
votes

How to check if an object is an instance of a NodeList in IE?

"Duck Typing" should always work: ... if (typeof el.length == 'number' && typeof el.item == 'func …
2
votes

How do I resequence dropdown list controls like the NetFlix queue from the client side (Javascript)

Look at Javascript toolkits like Scriptaculous for client side reordering. You add your elements as " …
1
vote

Typical pitfalls of cross-browser compatibility

I've found that IE 6 has pretty small limits to the allowed stack depth. At one point I was using a nice recursive function to get the position of an element in the document: …
0
votes

Typical pitfalls of cross-browser compatibility

When performing an XMLHttpRequest and executing a function 'onreadystatechange' the XMLHttpRequest.responseText property contains the data loaded at that point in Firefox, but not in IE (and maybe …