Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to create a OneNote (so it is going to need to be a WYSIWYG) type text-editor with javascript and was wondering the best way to go about this. I originally was using a canvas element but then I was showed this topic: Using a canvas element as a textarea

So here are things that I plan on making it do:

-Click anywhere to add a text area

-Add Graphs

-Every "object" (text, graph, etc..) will be able to be moved around after it has been created

-Everything will need to be able to be stored including the position so that someone can come back later and edit their work.

tl;dr: basically, I am trying to go about making a WYSIWYG editor where you can drag and drop items like in OneNote and was looking for your opinions on the best way to go about it. Whether it be editing an already existing WYSIWYG or starting from scratch.

Thankyou

share|improve this question
What have you tried? Do not expect people to just give you a solution without trying it first. – thantos Dec 20 '12 at 16:50
I said that I had tried using the canvas element, but have run into a wall basically because of all the features (spell check, copy/paste, etc.) that I would manually have to implement. I have also been working with a textarea, but I don't know how to make it so that you can just click anywhere in the textarea and type right where you clicked rather than the beginning. – tdub2012 Dec 20 '12 at 20:18
You kind of have to choose one. There are other ways, but they involve a lot of implementing. Something I would do would be to do it all via javascript. make a div that sizes to the screen. Clicking adds a text box there you clicked, allow them to resize the textbox, stuff like that. When parse the area by the click location to find what existing box was clicked. It would not be simple, but it would be cool and would get what you want done. This is not a simple request. Also look at Google Drawing and Google Presentations for examples. – thantos Dec 20 '12 at 20:23
alright, thankyou – tdub2012 Dec 20 '12 at 22:59

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.