vote up 1 vote down star

I'm creating a web page, and I can't (with html code) add a draw box*?

*It's a box, like a Microsoft Paint, only with one brush, where the user make a draw by a click draged.

flag

3 Answers

vote up 1 vote down check

I'm afraid there is no simple way to do what you want to do. The current version of HTML (4.01, I believe) does not support this at all. HTML 5, which is still in development, has a <canvas> element that can be used with javascript to create the kind of thing you are looking for, but only the latest versions of Firefox, Chrome, Opera, and Safari support it.

See: w3schools.com/tags/html5_canvas.asp for an explanation of the <canvas> element and dev.w3.org/html5/spec/#the-canvas-element for the full (uncompleted) specs.

See: http://devfiles.myopera.com/articles/649/example1.html for an example of the kind of design you are looking for.

link|flag
1  
Only Firefox, Chrome, Opera, and Safari? You've covered all the major browsers except our old friend IE! As for "latest", I'm pretty sure that Safari has had Canvas since v2 (and it's currently v4)... – Steve Jul 10 at 0:29
vote up 2 vote down

The following links may be helpful:

Also, have a look at this StackOverflow thread: http://stackoverflow.com/questions/304804/drawing-on-top-of-an-image-in-javascript.

Steve

link|flag
vote up 0 vote down

There's no HTML element that's a "draw box". You'll need to find something built in JavaScript/Flash/Java and drop it into your page.

Try CanvasPaint or this other Canvas Painter.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.