sounds like you are looking for a WYSIWYG editor
it is a graphical interface where you draw what you want on the pages
there are a lot out there
you may have heard of Dreamweaver
that is professional program but there are heaps of free ones on the net
hotdog is one program
but hey there are heaps but i wouldnt know a good free one
I am not clear if the question pertains to creating an image that functions as a button or something else but create or "borrow" an image that you like and use
<input type="image" src="nameofimage.jpg">
This will act as a form submission in place of the usual <input type="submit">
Be careful though - if you need to support older versions of Netscape. It can cause issues and you may need to submit the form using javascript
<input type="image" src="nameofimage.jpg" onclick="javascript:document.formName.submit();">
, but with a .js file so you can make your own menubar with giving some parameters. But I have problems with document.write() in .js , so I'm asking if there is a way to create the same buttons that you get with <button></button> tags, but pure with javascript, without any html.
1. Is it possible to create that buttons with javascript ?
2. Or how can I solve that problem of document.write() ? (in the .js document.write() doesn't work)
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.