| Thread | Last Post | Replies |
|
| innerHTML handle and memory leak in IE 6 | 28 Feb 2006 18:40 GMT | 2 |
In the following piece of code, setting innerHTML is leaking handles and memory at a fast pace. There's no JScript -> DOM -> JScript cycle, though, so I don't see what is wrong. To me it seems like a bug in IE. Could someone either confirm it's a bug or explain why this is ...
|
| Array add method | 28 Feb 2006 11:49 GMT | 2 |
One more query. I have an xml like. <R A="1" B="2" C="3" D="4"/> I want to do loop thru all the attributes and create an array like this.
|
| Settimeout and Array Object | 28 Feb 2006 10:27 GMT | 3 |
This is my code. Im trying to pass an Array Object to a timeout function. But inside that function parameter is coming as undefined. <script>
|
| using HTTPRequest with GET | 28 Feb 2006 07:12 GMT | 3 |
I've migrated from VS2003 to VS2005 and from .NET 1.1 to .NET 2.0. thers is my probleme: I'm using HTTPRequest to commucate with server: url = getUrl() + "process.aspx?param=" + Params;
|
| "?" in XMLHttpRequest.ResponseText | 28 Feb 2006 07:03 GMT | 5 |
I'm fetching some HTML files with XMLHttpRequest and dumping the ResponseText into block elements; works fine except that single and double quotes are being displayed as question marks (inside of a black diamond in FireFox)
|
| onKeyPress and the Backspace key | 27 Feb 2006 22:00 GMT | 9 |
I have written code in JavaScript that restricts what characters the user can enter into a textbox by using the onKeyPress event handler. For example, I would using the following to restrict the user to using only Digits: onKeyPress="return (event.keyCode>=48 && event.keyCode<=57) ...
|
| all script functions | 27 Feb 2006 16:26 GMT | 5 |
I have some .js include in my page, MyPage.html like <script language='javascipt' src='MyJs1.js"/> <script language='javascipt' src='MyJs2.js"/> <script language='javascipt' src='MyJs3.js"/>
|
| vbs, js to exe | 27 Feb 2006 11:44 GMT | 2 |
Anyone knows of a good tool to convert a script(vbs,js) to an executable? Need to hide the source code. Thanks
|
| CreateElement("script") | 27 Feb 2006 09:24 GMT | 1 |
I'm doing a javascript transform whose output is having some inline <script> tags and function call. Im changing the innerHTML of a span using the transform output. Everything is fine other than fucntion call in script.I know it wont work
|
| Frames and Window Resizing | 26 Feb 2006 21:49 GMT | 14 |
I have an HTML page which has two frames on it - Header and Body are the frame names. Is it possible to resize the window containing the html frames when the ASP page being displayed in the Body frame is loaded and reloaded?
|
| change the "browse" button text in input type="file" | 26 Feb 2006 07:12 GMT | 2 |
the subject says it all... I want to edit the text in the "browse" button in a input type="file" ojbect on client... is there any way to do that?
|
| Get and Set the Cursor (Caret) Position in a TextBox or TextArea | 24 Feb 2006 17:39 GMT | 2 |
How can you get the current position of the blinking cursor in a text box or text area? How can you set this position programmatically? Since I am impatient and didn't quickly find an answer, I decided to make one up, and in a year, when I've forgotten I've done this already,
|
| Updating A Dynamic Linked Listbox | 23 Feb 2006 15:59 GMT | 3 |
I am trying to update a dynamically linked listbox. The following code works great when Adding a Record to the Database (selecting a value from one listbox and it changes the selections in another) but when I try to
|
| Split and typeof | 23 Feb 2006 14:53 GMT | 4 |
Im having a string like this str="One$Two$1$Three$5$Four$Five$" Im doing a split with '$' ArrStr=str.split("$");
|
| problem with onchange event in firefox | 23 Feb 2006 07:55 GMT | 8 |
I;ve got a dropdown list on my page, when i open it with mouse and click on an item, it fires off the onchange, but if i use the keypad to scroll the list, it doesnt fire off.. Works fine in IE, just not in firefox.
|