| |||
| [Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] |
These work with Safari but not with Firefox, Opera and IE7.
Is onblur not valid with these?
Any comments?
function copy_Name() { document.request_form.i_name.value = print_name.value; }
<input name="print_name" type="text" id="print_name" style="height: 25px; width: 400px;" value="print_name" size="8" maxlength="32" onblur="copy_Name()" />
Try:
function copy_Name(val) {
document.request_form.i_name.value = val
}onblur="copy_Name(this.value)" _______________________________________________ Do not post admin requests to the list. They will be ignored. Web-dev mailing list (email@hidden) Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/web-dev/email@hidden
| References: | |
| >onblur fails in Firefox, Opera and IE& (From: Robert Poland <email@hidden>) |
| Home | Archives | FAQ | Terms/Conditions | Contact | RSS | Lists | About |
Visit the Apple Store online or at retail locations.
1-800-MY-APPLE
Contact Apple | Terms of Use | Privacy Policy
Copyright © 2007 Apple Inc. All rights reserved.