I am searching for the smallest WYSIWG editor i can find.
I have tried TinyMCE, CKEditor etc. but i can not find a small one, all has hundreds of kb js files to load.
I dont need image upload etc, even if i like the one Stackoverflow using so think i need some that more shows like Word but really basic features.
I am using jQuery in the project and i it is a ASP.NET MVC 3.0 project but i really like jQuery and normal html instead of ASP.NET components.
But i am open for ideas about everything that are really basic and tiny size.
Someone has any idea?
Here you go:
<p contenteditable="true">Editable text!</p>
Admittedly it's not the most fully-featured editor out there, but it's certainly basic and tiny.
The smallest one I've found is CLEditor: http://premiumsoftware.net/cleditor/
Have you tried http://www.aloha-editor.org/index.php ?
try this
http://www.wyzz.info/downloads_page.html
Check out TinyMCE. http://tinymce.moxiecode.com/
Related
Today I found that my Wordpress website has encountered a problem. There are two unexpected letters at the top of the page which can be found in the screen shot below. I can't find where it is from the raw files of Wordpress. I don't know what happened. Could somebody help me please?
Heya :)You might be using some website screenshot plugin. Deactivate that plugin and then check the output. :)
i've had the same problem a while ago only instead of an n or two n's in your case i had a v just at the same place as yours is. What helped for me where the following steps.
Check all files, header.php, template files, etc.
Deactivate and activate your plug-ins. Maybe even try the Wordpress Re-install function from the updates page. Don't worry none of your contents like pages, posts, etc will be lost.
Check your widgets, sidebars and other content blocks from the back-end but also the corresponding template files.
If you have a decent editor like in my case PHPstorm make use of the show history function. It makes searching a lot easier.
I hope just like i had your problem will be solved after taking these steps.
I know that there are a number of points regarding this question, but I just can't find what I'm looking for so I hope someone can answer me. So, what I'm trying to do is:
imagine you have a div that is 400 X 400 px. The user uploads an image and enters text via input[type="text"] and all of it is shown inside that div. I want to export all of the content of that div in a PDF, possibliy by JavaScript (jQuery) od PHP. What would be the best way to do it?
If anyone could show a small example (code), I would appreciate it!
You can use these jquery plugins
https://github.com/mozilla/pdf.js
https://github.com/MrRio/jsPDF
Maybe you could combine the PHP-Printer functions-api (http://www.php.net/manual/en/book.printer.php) with a software like, for example, PDF-Creator (http://sourceforge.net/projects/pdfcreator/).
But this would imply that PDF-Creator is installed on the system of the user.
It's just a general idea ...
You can generate a PDF since a HTML page, with the WeasyPrint package. It's very easy to use and its most speed that javascript.
I need to insert a custom search box in the middle of joomla frontpage.
The searchbox would contain html, css and java script.I tried using mod html and moduleanywhere. still no luck.
I would appreciate if any pros out there could advise me on this.
This should do the trick for you - http://extensions.joomla.org/extensions/core-enhancements/coding-a-scripts-integration/custom-code-in-modules/16359
If that one doesn't work for you, there are a whole bunch of modules that do basically the same thing here - http://extensions.joomla.org/extensions/core-enhancements/coding-a-scripts-integration/custom-code-in-modules
As a last resort (actually this is the best way to do it) you can also create a custom module for your search box. It's really not that hard to do and it's much better to do it this way since you are not using an extension to add more code.
You can get info on module dev here - http://docs.joomla.org/Module_Development
And here is a quick video tutorial to get you started - http://www.youtube.com/watch?v=Qd93be8YRNY
has anyone stumbled upon image editor done either in pure JS, or jQuery - that kind like CKEditor has?
I'm looking for piece of code, that adds handles to image, so you can resize it, or even drag image around, as you wish.
Thank you.
Edit: rephrased.
Here is wonderful image crop/resize JQuery plugin http://www.cropzoom.com.ar/
Yes there are numerous online. Find here. jCrop is exceptional and awesome.
The way editors such as tinyMCE and CKEditor do it is like this
<div contenteditable="true" id="div1">
<img src="tache17.jpg" />
</div>
gimme html
It's a browser thing not a JS thing.
Of course placing the image in the div and making the div contentEditable is done with JS but the resizing handles you are talking about are generated by the browser.
Note
I haven't tested this in anything other than firefox
if you are looking for croopzoom and the website don't work?
look at github -> https://github.com/cropzoom/cropzoom
We have a requirement to display an editable list in a web page.
What would be the easiest way to do that? Farpoint Spread was something I have used to achieve this earlier but it was quite slow when a large number of records were involved and it needed to be coded in VBScript. Besides it wasn't free.
I would be looking for a JavaScript solution and I can't afford to buy one. Also is there anything else you can think of other than a spread?
I like JQuery.Spreadsheet UI, try this demo, very nice...
Also found at: http://code.google.com/p/completeui
FarPoint has an ASP.Net solution: http://www.fpoint.com/netproducts/spreadweb/spread.aspx
Try this guy: http://www.visop-dev.com/jquerysheet.html , this is on my list of things to try but I haven't got around to it! It's free but I think a donation would be nice.