Hi guys, I am new to this club and hope to find your help as soon as possible. I have an order form, where customers can buy single items or multiple items. It...
Best solution in my opinion would be to set up your own webserver with Ubuntu or anything else. It does not need brand new hardware -- just create a server,...
I've got an idea of what you need, but it's hard to say without looking at the code. Please post your entire page (both HTML and JavaScript) and let us have a...
Thanks for the commets guys. Rather than copying the entire thread I'll just give you the short story. The problem is a website. On most servers, it works...
Thanks Guys! Here is the code. The first one is which works fine, when a user wants to order a single item. The second one is the one used when a user have to...
What I see as a problem is that you have defined setmoney () on the first page, but not the second. JavaScript definitions do not carry over from page to page....
Check the network. One possibility: can you break up the file so you must use multiple <script> tags to include it? The reason why I'm asking: At home I've got...
Hi. doing a few web projects for my web design course. used a java script file for mouse over links. now, my sighted friend, saying, that the links do not work...
Thanks Tim Actually, by 1st file and 2nd file, i mean the phases. Let me explain it all: When a customer orders a single item, the first code is displayed. It ...
if i have 5 input boxes in a form for users to enter in a rate like 65 o.k How can i get all 5 input boxes to add up Automaticly and put the sum in a 6th Box...
hi all i have form with html first question had radio buttons "yas" , "no" i want when select "yes" appear the second question in the same page befor press...
hi all i have form with html first question had radio buttons "yas" , "no" i want when select "yes" appear the second question in the same page befor press...
Give us some more detail. Show us your code. Are you using anything that is Microsoft-specific? If so, it won't work on Firefox or many other browsers. --Tim...
So, do I understand correctly that these 2 "phases" are actually 1 file? My suggestions: 1) Get rid of the "single item phase". This is because "single item" ...
Declare everyhting in your HTML page. Set this attribute in the second question box: style="visibility: hidden" In your JavaScript code, when "yes" is...
http://dunnbypaul.net/js_mouse/ jerince peter <jerince_peter@...> wrote: hai coders, i need to take the x and y co-ordinate of the mouse location of...
can someone provide javascript code for the following event when the mouse rolls over an image there should be a pop up image which is larger in size than the...
... The event model and property names are different. Only MSIE uses a global event object. Event handlers in Mozilla-based browsers follow the W3C DOM model,...
So I put together this neat little AJAX-handling object that makes it a little easier to do. You can set the event handlers, etc. Nothing too fancy, but it...
Hi. how do i create mouseovers in css, instead of java script? cheers Marvin. _________________________________________________________________ Your Future...
... Use the :hover pseudoclass. If you Google for something like of ":hover pseudoclass" or ":hover CSS", you should find plenty of examples, etc. cheers jon....
The following code for some reason does not work in Firefox 2.x. It does work however in IE and Opera. The code is found within an iframe and I am trying to...
It's not often that I run into something that I can't figure out or find the answer to, But! I have 2 arrays. array1 has 210 values in it, and array2 has 3...
This message can be ignored. I figured it out with nested loops and splice(). ripple_27 <ripple_27@...> wrote: It's not often that I run into something...
Hi, There is no way to avoid looping as JavaScript doesn't come with an Array 'intersect' method. You could extend the capabilities of the Array class with...
... Looping through 630 comparisons does not that that long. The alternatives include hash tables, which move the performance hit to the creation of the 213...
If the array elements are sorted ascending, you could do a binary compare and speed things up greatly. Compare with midpoint, if less, compare with midpoint of...
I have a list of transactions where the user can select a checkbox in order to 'close' one or more transactions for the period. I assigned the value of each...