Forum: JavaScript / DHTML / AJAX Sep 1st, 2009 |
| Replies: 1 Views: 335 Hello,
I am able to get the height of the browser w/o the scroll bar, but I need a way of getting the height of the browser with the scroll bar. How can I do this with javascript? |
Forum: JavaScript / DHTML / AJAX May 30th, 2009 |
| Replies: 4 Views: 668 Thanks Airshow, that's what I was looking for! |
Forum: JavaScript / DHTML / AJAX May 30th, 2009 |
| Replies: 4 Views: 668 Hello, I am trying to completely remove everything from a table. I want to delete all of the rows which I am able to do. But when I delete all of the rows and add rows in again there is whitespace at... |
Forum: JavaScript / DHTML / AJAX May 26th, 2009 |
| Replies: 3 Views: 563 So when the buildString function gets called instead of some value for data.cells[i].letter like 'A' the string data.cells[i].letter is being passed to the function. I want to get what the value of... |
Forum: JavaScript / DHTML / AJAX May 26th, 2009 |
| Replies: 3 Views: 563 Hello I have a JSON array data.cells that I need to iterate through to get the values out of and put the values into an onclick event listener.
Right now the variable name data.cells[i].letter is... |
Forum: JavaScript / DHTML / AJAX Jul 12th, 2008 |
| Replies: 2 Views: 2,223 Thanks! That got it working, it works in both IE and Firefox, in Firefox I had to do
var rowItem = document.createElement('input');
rowItem.setAttribute('type', 'text');... |
Forum: JavaScript / DHTML / AJAX Jul 12th, 2008 |
| Replies: 2 Views: 2,223 Hello, I have done this successfully in firefox, but I need to do this in IE now, I want to dynamically generate an id for my input elements for an element being created. So far I can't get the id to... |
Forum: JavaScript / DHTML / AJAX Jul 8th, 2008 |
| Replies: 8 Views: 1,628 I think you are a little confused.... |
Forum: JavaScript / DHTML / AJAX Jul 7th, 2008 |
| Replies: 8 Views: 1,628 well I did solve it using names I can post code if you want...my point is use both. Were you able to solve it dips? |
Forum: JavaScript / DHTML / AJAX Jul 7th, 2008 |
| Replies: 3 Views: 2,878 solved this yesterday, just used some DOM stuff. |
Forum: JavaScript / DHTML / AJAX Jul 6th, 2008 |
| Replies: 8 Views: 1,628 Ok, instead of using name in forms, you need to use id for firefox |
Forum: JavaScript / DHTML / AJAX Jul 6th, 2008 |
| Replies: 8 Views: 1,628 Interesting I tried doing something similar, and in the web developer plugin debug console in firefox I got a message saying that the element is null. Mine was working in ie too, but not in firefox. |
Forum: JavaScript / DHTML / AJAX Jul 6th, 2008 |
| Replies: 3 Views: 2,878 Hello, I want for the user to be able to click on a button that lets them add a <tr> full of <td>'s and <input>'s in the <td> tags. So I have code like:
<script type="text/javascript">
function... |
Forum: JavaScript / DHTML / AJAX Jul 6th, 2008 |
| Replies: 1 Views: 791 oops, had a bad name, this is solved now. |
Forum: JavaScript / DHTML / AJAX Jul 6th, 2008 |
| Replies: 5 Views: 1,250 so would a regex work to get the pattern out so we get the ones that start with qty? |
Forum: JavaScript / DHTML / AJAX Jul 6th, 2008 |
| Replies: 1 Views: 791 Hello, whenever I try to call this function, web developer plugin for firefox gives me a message that says: "Error: addRow is not defined
Source File: http://localhost/xampp/Aptana/index.php
Line:... |
Forum: JavaScript / DHTML / AJAX Jul 5th, 2008 |
| Replies: 5 Views: 1,250 well for what I'm doing I don't want take time to learn your jdomp you are promoting. |
Forum: JavaScript / DHTML / AJAX Jul 5th, 2008 |
| Replies: 5 Views: 1,250 Hello, I was wondering if there would be a way I could generate elements dynamically using something like this, where qtyElements is an array of all the elements that start with qty.
var... |
Forum: JavaScript / DHTML / AJAX Apr 23rd, 2008 |
| Replies: 1 Views: 642 Hello, I want to delay showing all of my links on my page for a few seconds until all the animation I am doing is done. I was wondering if there was a way I could delay placing them using javascript.... |
Forum: JavaScript / DHTML / AJAX Dec 23rd, 2007 |
| Replies: 1 Views: 8,695 Hello, I get an error message saying flow() is not defined when I debug in firebug. I am not sure why this is happening. Here is my code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"... |
Forum: JavaScript / DHTML / AJAX Dec 4th, 2007 |
| Replies: 2 Views: 1,290 Well say I have an array that has a value of "Text" at position 0. How would I set the array at position 0 to display in my table where I have the element x. |
Forum: JavaScript / DHTML / AJAX Dec 3rd, 2007 |
| Replies: 2 Views: 1,290 Hey suppose I have code like:
<td id="something">I want to put stuff in here</td>
How would I be able to put the value of a JavaScript array into the part where I want to put stuff. Say the... |
Forum: JavaScript / DHTML / AJAX Nov 23rd, 2007 |
| Replies: 2 Views: 1,257 How do I Delete a thread? |
Forum: JavaScript / DHTML / AJAX Nov 23rd, 2007 |
| Replies: 2 Views: 1,257 Hello, I am getting an error message saying clock is undefined, I am not sure why, here is my code:
<script type ="text/javascript">
var theDays = new Array("Sunday", "Monday", "Tuesday",... |
Forum: JavaScript / DHTML / AJAX Oct 29th, 2007 |
| Replies: 6 Views: 4,558 |
Forum: JavaScript / DHTML / AJAX Oct 29th, 2007 |
| Replies: 6 Views: 4,558 Ok, I changed the switch statement so it's right where you said to put it, but I'm still getting an answer of NaN (Not a number). I'll put in simple values like 2,3,0. I'm not sure why I get the NaN,... |
Forum: JavaScript / DHTML / AJAX Oct 28th, 2007 |
| Replies: 6 Views: 4,558 The way I understand the switch statement is that when the variable in this case "product" is being used, as it is in the while loop, I enter in the prompt "1", and then price is equal to what the... |
Forum: JavaScript / DHTML / AJAX Oct 27th, 2007 |
| Replies: 6 Views: 4,558 Hello I am trying to display the total cost after the user enters a product ID, controlled by a switch statement. However the total variable ends up being the product ID, not the price. I want the... |
Forum: JavaScript / DHTML / AJAX Mar 13th, 2007 |
| Replies: 6 Views: 7,190 thanks I used #4 on that list, and it works, check it out, the links on the left side of the page are where it is designed to play: http://www.newhorizondesigns.org (http://www.newhorizondesigns.org/) |
Forum: JavaScript / DHTML / AJAX Mar 8th, 2007 |
| Replies: 6 Views: 7,190 Hey, I am trying to get a sound to play when the user moves the mouse over on of my links. I don't know javascript, I just copied this code from a book, so it's probably something simple. Here is my... |