Need a control that allows for editing for web page?
I have a need to build a single web page. This page will essentially allow the user to insert an image (if they choose to) and then be able to write a paragraph or two and then format this information in an email so it can be sent out to subscribers. Is there any kind of tool that would allow for this? Also, Wordpress IS NOT an option. Just plain HTML, CSS and Javascript if necessary.
Thanks,
Re: Need a control that allows for editing for web page?
We use CKEditor for editing HTML in our web apps.
Re: Need a control that allows for editing for web page?
Quote:
Originally Posted by
jmcilhinney
We use
CKEditor for editing HTML in our web apps.
I can vouch for CKEditor. I've personally used the free version (version 4) and it works great.
Quote:
Originally Posted by
blakemckenna
...This page will essentially allow the user to insert an image (if they choose to)...
Keep in mind that if you want to upload an image from your local filesystem then you will need to setup a server of some sort, otherwise you'll get a CORS error. If you just want to insert an image from an existing URL then this won't be an issue.