First  |  Prev |  Next  |  Last
Pages: 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
Dynamic form processing
In an HTML form I dynamically create hidden inputs (<input type="hidden"...) with JavaScript. However, if the submit button is hit, the data from these dynamically created inputs is not included on the URL (if I use GET), or in the post data (if I use POST). Apparently the changes to the HTML DOM are not completel... 6 May 2008 23:25
setTimeout() syntax
I have noticed that setTimeout works if the brackets () are left off the function called, like this: window.setTimeout(myFunction, 1000); I thought that the brackets were required to show that myFunction is a function, so why are they not required here? Also I have found that if I want to pass a value to a f... 6 May 2008 23:25
background image
tetris wrote: I have this little code wich is working quite good, it makes a slide show on the body background, anyone could guide me on how to add a fade effect as a transition between the images?? Since `opacity' is _not_ what you are looking for (we are talking *background* images here), this is only go... 6 May 2008 23:25
Name of class instance
Hi, I'm wondering if it's possible for an object to figure it's name. for example: function baseClass() { // setup properties of "baseClass" } baseClass.prototype = { aMethod: function() { // do something using the name of the object // that's an instance of this (or derived) class // e.g. // w... 6 May 2008 23:25
customerisnotalwaysright.
I am waiting for the new menu you devise with the new links so that I can hook up what I have done and test the whole thing. Anything else coming down the pike? Last week was only 11 hours. ... 6 May 2008 23:25
Conditional Operator and style/correctness
Zack wrote: Hi, Let's say you have this function named validate. validate looks like this: function validate() { return ($F("Email") != '' ? ($("Name").value = $F("Email")) : false); } (Using prototype.js. For those not familiar $() is like getElementById and $F is like getElementBy... 6 May 2008 23:25
FAQ Topic - Why does 1+1 equal 11? or How do I convert a string to a number? (2008-05-06)
----------------------------------------------------------------------- FAQ Topic - Why does 1+1 equal 11? or How do I convert a string to a number? ----------------------------------------------------------------------- Javascript variables are loosely typed: the conversion between a string and a number happens... 6 May 2008 23:25
dhtmlgoodies gallery script..
hi, I need help w/this gallery script from dhtmlgoodies http://www.dhtmlgoodies.com/scripts/image-slideshow-vertical/image-slideshow-vertical.html if I change name of "up" and "down" arrow-images (I need .jpg's, not ..gif's) the "up" and "down" links don't work anymore... yet I don't see these images refere... 6 May 2008 23:25
Why do this? <SCRIPT TYPE="text/javascript"
Hi; I've being going through some legacy code on an old JSP site I have been patching. I noticed that when I save the JSP down to my PC as an HTML file I get this javascript error in IE 6 ( not in the latest Firefox ): "invalid character" The problem traces back to this line of code: <SCRIPT TYPE="text... 6 May 2008 23:25
Using innerhtml
Hi, This is the content of my DIV now: echo " <div class='innerb'>"; echo " <table class='tabletwo'>"; $select = mysql_query("SELECT row_id, name, address, city, state, guests, seating, comments FROM reservations ... 6 May 2008 23:25
First  |  Prev |  Next  |  Last
Pages: 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44