Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Tooltip for a submit button
Message
From
14/11/2003 15:39:04
Jerry Tovar
Dana Corporation Dana It
Maumee, Ohio, United States
 
General information
Forum:
Internet
Category:
HTML
Miscellaneous
Thread ID:
00849269
Message ID:
00850041
Views:
26
This is exactly what I needed.

Thanks,

Jerry



>>Is there a way to display a tooltip for a submit button?
>>
>>Thanks,
>>
>>Jerry
>
>Jerry;
>
>
>
>
><input type="submit" style="WIDTH: 130px ;
>			FONT-SIZE: 9pt;
>			top: 5px ;
>			left: 480px;
>			position:absolute"
>			id="cmdSave"
>			name="cmdSave"
>			value="Save ME!"
>			title="Submit this form!">
>
>
>
>
>
>
>Another way which allows validations at the form level and a lot more is offered below. It uses vbScript but you can convert it to JavaScript if needed.
>
>
>
><input type="button" style="WIDTH: 130px ;
>			FONT-SIZE: 9pt;
>			top: 5px ;
>			left: 480px;
>			position:absolute"
>			id="cmdSave"
>			name="cmdSave"
>			value="Save ME!"
>			title="Submit this form!">
>
><script Language=vbScript>
>
>Sub cmdSave_OnClick()
>' validation code goes here - if all is well - submit
>if llOK then
>     frmLineDetail.Submit()
>else
>     ' advise user what to do...
>end if
>
>End Sub
>
></script>
>
>
>If you need more detail let me know.
>
>Tom
Previous
Reply
Map
View

Click here to load this message in the networking platform