I have this script that I use for a button,
<input class="formbutton" type="button" onClick="doBUILD();" value="Build Text Area" tabindex="3">
this is works for the regular button.
but I changed it to the following to try and get an image instead:
<input class="formbutton" type="image" src="includes\images\build.gif" onClick="doBUILD();" value="Build Text Area" tabindex="3">
but when I click on the button, it asks if I want to save a file, if I click cancel it goes away. Is there away to stop that....
it still does the function correctly.... just the problem with wanting to download the file....
any suggestions???
<input class="formbutton" type="button" onClick="doBUILD();" value="Build Text Area" tabindex="3">
this is works for the regular button.
but I changed it to the following to try and get an image instead:
<input class="formbutton" type="image" src="includes\images\build.gif" onClick="doBUILD();" value="Build Text Area" tabindex="3">
but when I click on the button, it asks if I want to save a file, if I click cancel it goes away. Is there away to stop that....
it still does the function correctly.... just the problem with wanting to download the file....
any suggestions???
Comment