| Thread | Last Post | Replies |
|
| Image object problem | 08 Oct 2006 23:18 GMT | 2 |
I currently have a piece of JavaScript which swaps the on-screen image between two different versions, and I use: document.images[i].src = something and change the src each time. However, every time the script does the change
|
| Javascript security setting | 08 Oct 2006 21:53 GMT | 5 |
In IE , there is a setting in EXTRAS->OPTIONS->SECURITY->INTERNET->CUSTOM SETTINGS->SCRIPTING-> ALLOW ACCESS ACROSS DOMAIN BOUNDARIES Does this really affect the Sandbox, respectively "same origin policie" of
|
| when should I prefer stopPropagation to simply returning false? | 08 Oct 2006 21:21 GMT | 3 |
On this page I'm given the impression that stopPropagation is a lot like returning false: http://www.brainjar.com/dhtml/events/default3.asp "preventDefault() Can be used to cancel the event, if it is
|
| OO Javascript for AJAX encapsulation | 08 Oct 2006 17:06 GMT | 10 |
I'm reading 'Ajax in Action', (one of the best of the many tech books I've read) and there's an example that I just don't fully understand. If you happen to have the book, it's on page 75. I'm hoping someone can enlighten me.
|
| using referrer | 08 Oct 2006 16:05 GMT | 1 |
I have a site http://www.example.com, and I want to link to an article on another site http://www.example2.com, how would I use the site http://www.example.com , as a referrer to the article on the second site http://www.example2.com using javascript?
|
| How do I make this following rollover image paue on mouseover and restart on mouseout? | 08 Oct 2006 15:51 GMT | 2 |
I cannot get the following rolling image script to pause when the mouse is over the image and then restart when no longer on the image. It continues to rotate the images. I have tried onmouseover and onmouseout but with no success.
|
| insert element at the end of a node | 08 Oct 2006 14:24 GMT | 6 |
i'm a little frustrated. i'm trying to add a td element with appendChild as last child to a tr element. but it adds the td element always as first child to the tr element? although appendChild should add the new child at the end. what could be
|
| simple question | 08 Oct 2006 13:34 GMT | 5 |
can anyone tell me why the second 'alert()' is not executed here? The first 'alert()' pops up (so I know I am inside the 'if'), but not the second one, and orderNum is not set.... function addbook(bookname){
|
| Multiple selection through javascript | 08 Oct 2006 08:36 GMT | 3 |
I have a multiple select list as follows: <select name="selList" multiple> <option value="1"> Item 1</option> <option value="2"> Item 2</option>
|
| Mail through Javascript | 08 Oct 2006 04:52 GMT | 3 |
I need to ask one thing Please help me out form this..... I need to send a mail through Javascript. This mail includes the details of the User . I search with light and lamp but did n't get the sucess. Please
|
| Copied Javascript not working | 07 Oct 2006 23:30 GMT | 6 |
I'm very new to javascipt, and I was copying this text out a book, but it doesn't seem to be working. Any ideas (its probably a syntax error)? Thank anyway! <SCRIPT TYPE = "text/javascript">
|
| can I avoid the evail to convert from string to a boolean | 07 Oct 2006 19:34 GMT | 2 |
Is there a better way to do this? The problem that I have is that x can be "true" or "false" (as type string), or true or false (as boolean type). I'm doing comparisons like...
|
| Hidden field two jumps | 07 Oct 2006 14:12 GMT | 2 |
I want to have a window pop up with a form. When the form is submitted, it needs to pass along the URL of the original window. If find on th web eight gazillion descriptions of how to pass data from one page to another via hidden fields, but not a word about how to pass that ...
|
| Nesting ifs? | 07 Oct 2006 14:08 GMT | 5 |
I want to trigger an alert if three conditons are met. How do I nest if statements? I tried this, but it triggered the alert if just one of the three conditions was met. function checkform ( form )
|
| can I chain an object into a global namespace ? | 07 Oct 2006 13:43 GMT | 12 |
Can I chain an object into a global namespace ? Like "with(object) {....}", but I'd like to see it at the _end_ of the chain, not at the top... following code works, but not neat either...
|