Show Bid Request
Javascript Display Focus Bug Fix
Bid Request Id: 66125
|
|
|
Posted by: |
JohnBev (2 ratings)
(Software buyer rating 10)
|
Non-action Ratio: |
Above Average - 33.33%
|
Buyer Security Verifications: |
Good
|
Approved on: |
Jun 1, 2003 6:06:04 PM EDT
|
Bidding Closes: |
Jun 3, 2003 11:53:49 AM EDT
|
Viewed (by coders): |
64 times
|
Deadline: |
6/7/2003
TIME EXPIRED
|
|
|
|
Description:
We have accidently created a very pesky Javascript bug that only allows one region to get focus for a graphical icon display as demonstrated in this URL:
http://www.21stcenturyinc.com/Holdem/Hand.htm
We need an expert Javascript programmer to help us resolve this issue very quickly and professionally to meet a tight deadline.
More custom private Rent A Coder bids will be forthcoming for the person selected for this particular small project.
Thank you for your prompt reply to this Bid Request.
Deliverables: 1) Complete and fully-functional working program(s) in executable form as well as complete source code of all work done.
2) Installation package that will install the software (in ready-to-run condition) on the platform(s) specified in this bid request.
3) Complete ownership and distribution copyrights to all work purchased.
Platform:
Windows 2000 Advanced IIS Server Microsoft Windows All Versions Javascript and HTML
Must be 100% finished and received by buyer on:
Jun 7, 2003 EDT
Deadline legal notes: All times are expressed in the time zone of the site EDT (UT - 5). If the buyer omitted a time, then the deadline is 11:59:59 PM EDT on the indicated date.
Remember that contacting the other party outside of the site (by email, phone, etc.) on all business projects < $500 (before the buyer's money is escrowed) is a violation of both the software buyer and seller agreements.
We monitor all site activity for such violations and can instantly expel transgressers on the spot, so we thank you in advance for your cooperation.
If you notice a violation please help out the site and report it. Thanks for your help.
|
|
Bidding/Comments:
|
All monetary amounts on the site are in United States dollars.
Rent a Coder is a closed auction, so coders can only see their own bids and comments. Buyers can view every posting made on their bid requests. |
See all rejected bids (and all comments)
Name |
Bid Amount |
Date |
Coder Rating |
|
|
|
This bid was accepted by the buyer!
|
$8 (USD)
|
Jun 1, 2003 7:01:23 PM EDT
|
10
(Excellent)
|
|
|
Hi
As far as I can see, the only problem you are having is that the image changes only on the top (the bottom never changes).
It is a pretty easy fix. Your changeMarble2(option) function (in hand.js) sets document.images[0].src (the first card). It should be, I think, document.images[1].src instead.
Also there is a better way to do it if you plan on adding more cards later:
function changeMarble2(img, option) { img.src = marble2[option.selectedIndex].src; ... etc ... }
and instead of onChange='changeMarble2(this)' in the select, do:
onChange='changeMarble2(card2, this)'
and for the image itself:
img src='images/cards/b.gif' width='73' height='97' alt='Marble2' name='card2'
It is more compatible this way with older browsers that do not properly index images via document.images[n].
If you have any questions, feel free.
- Eric
|
|
|
|
|
|