| Thread | Last Post | Replies |
|
| Maximizing the browser window | 31 Jul 2004 16:01 GMT | 3 |
I have seen code for making a non-maximized window as big as they can be, but they aren't truly maximized in the same way as when you actually click on the window's maximize button. The code that I have seen is,
|
| how to determine the position of PROMPT? | 31 Jul 2004 12:35 GMT | 2 |
When using var a = PROMPT("any .."), it comes in rthe left up corner of the window. Is it possible to place it elsewhere in the window? Thanks Bjorn
|
| Determing the width and height (in pixels) of a browser window | 30 Jul 2004 14:33 GMT | 2 |
Apologies if this isn't the right group to ask this... I'm new to JavaScript and its implementation in Internet Explorer. I'm trying out a few simple examples from a JS book, but some of the 'window' objects in the book's sample code seem to be Netscape-specific. I've spent
|
| numher format | 30 Jul 2004 05:14 GMT | 2 |
Simple question please. How can I change a number to a format, like 1234567890 to 1,234,567,890 Thanks Andrew
|
| Can JScript can declare public variable or constance | 29 Jul 2004 11:47 GMT | 1 |
I want to use a variable to store the company name. Can JScript can declare public variable or constance
|
| How to Call a Javascript function in JScript ? | 29 Jul 2004 07:53 GMT | 5 |
I´m trying to call a javascript function in a JSCRIPT tag, is that possible? <script language="JavaScript" type="text/JavaScript"> function cria_select() { alert_modified();
|
| question about number of items in Array | 28 Jul 2004 19:01 GMT | 5 |
Why do we have to specify the number of items in a array? i tried this and it worked: a=new Array(2) a[5]="ok"
|
| Getting element position in browser window | 28 Jul 2004 15:45 GMT | 3 |
Is it possible to get position of element in browser window using JS. I have some nested DIVs, eg. <div> <div> <p> some text</p>
|
| I would like to make a chat program. How? | 28 Jul 2004 15:09 GMT | 1 |
I would like to make a simple chatting application. Can I do this using JavaScript? It seems that I would have to do this by having JavaScript communicate directly back to my server. How is this done?
|
| DOM - setAttribute is not working on IE!! | 28 Jul 2004 14:01 GMT | 7 |
I´m trying to make a script that do some action on changing the option of a selecting. I´m using setAttribute to create HTML elements: ... select = document.createElement("SELECT");
|
| Auto calculating form | 27 Jul 2004 02:12 GMT | 1 |
I have a page with an order form, and I have a script that is suppose to automatically fill in the total box once the user has selected a item type and quantity. I keep getting "'mathForm.num.options is null or not an object." Here's the entire file:
|
| Determine if ActiveX is enabled | 26 Jul 2004 21:30 GMT | 2 |
is there a way to determine if ActiveX is enabled in the browser? Thx Gus
|
| Calculate the number of frames in a page | 26 Jul 2004 16:06 GMT | 4 |
Hi all, i've tried to use window.frames.length but it returns always "0" also if my page has 3 frames.. how can I do?
|
| Checking Group Memberships in JScript | 25 Jul 2004 23:06 GMT | 2 |
How can I determine if the current user is member of the Administrators group? Thanks for your help, Zampano
|
| Get n. chars in text file in JScript? | 24 Jul 2004 11:41 GMT | 1 |
I am trying to read the last 128 chars in a .MPG file for the sake of retrieving the textual ID3 tags. Is this as roundabout a process as I think it is? It appears that, unlike in VB, there is no variable like FileEnd which would allow one to 'skip' to FileEnd - 128 directly.
|