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 currently designing an inline text editor. Users will have the ability to drag and drop images into the editor anywhere they want.

The editor is entirely iFrame based, heavily relying on nested divs for styling and formatting. Now if I the user drags the image into the middle of the content and drops it there, I want that the content above the drop zone be packaged into one div, the image being placed below it, and the content below the drop zone packaged into another div and placed below the image.

But I have no idea how to split a div into two parts based on co-ordinates (which can be obtained from the jQuery drop handler). Can anyone give me an idea on how to do it?

share|improve this question
not the best idea but you could put each word in an inline element (ex:span) and get the span at the specified co-ordinates – yoelp Jan 28 at 15:33
Wow that looks insanely complicated! Basically I am designing a RTE, where the user can paste a chunk of content, copy and paste an image from their hard drive, etc. So say a chunk of text is pasted, it is difficult to tokenize each word into a span. How come then MS Word do it? – Cupidvogel Jan 28 at 17:12
How come then MS Word do it They have more than just a few developers at Microsoft. I can assure you MS Word is indeed a very complex application. – Robert Fricke Jan 30 at 8:11
Okay. But they surely do it with some logic, right? I just want to understand that... – Cupidvogel Jan 30 at 8:13

2 Answers

up vote 7 down vote accepted
+150

I think i get the gist of what you are trying to do and i made a short script to demonstrate one possibilty. I split the text into one div per character, and make those divs sortable so i can drag and drop position my image in the middle of the text

HTML

<span class="sortable">
       <img id="image" src="https://si0.twimg.com/profile_images/1842775519/profile_normal.png" />
        <input type="text" size="1" id="tb"/>
</span>

Javascript

$(function () {
    $(".sortable").sortable();  //Makes panel sortable (needs jquery and jquery UI)
    $("#tb").keyup(function () { //binds keyup event on the input box
        $('<div>' + $(this).val() + '</div>').insertBefore(this);  //adds the input box value to a new div and inserts it into the DOM before the input box itself
        $(this).val(''); // empties the input
    });
});

CSS

* {
    float:left
}
.sortable {
    border: solid 1px black;
    width:200px;
    float:left
}

see a working fiddle here http://jsfiddle.net/urbanbjorkman/cFfS9/1/

This might be a bit of a mad hatter solution large chunks of text . And it still needs a lot of work (obviously since this is only a couple of lines of javascript)

But it would not be inconcievable to keep the text in one div. And then to split it into separate elements on the sortstart event. And on the sortstop event join all connecting texts back together and leaving the image where it is. thus giving you what you asked for with a div split in two with the image inbetween.

share|improve this answer
Can you explain the logic? How is it working for an input element also? – Cupidvogel Jan 30 at 4:55
I made a new fiddle that uses inputs instead of divs jsfiddle.net/AXUrH – Urban Björkman Jan 30 at 7:07
i added some comments to the javascript code. And the logic is basically this: I split the text into one div per character, and make those divs sortable so i can drag and drop position my image in the middle of the text – Urban Björkman Jan 30 at 7:10
Where are you breaking the text into divs? You are just inserting a new text input every time a keyup is fired. – Cupidvogel Jan 30 at 7:52
You asked for a script with inputs instead of divs? The original fiddle uses divs. If my little script is to complicated then i suggest that you go with a third party editor like Kendo demos.kendoui.com/web/editor/index.html – Urban Björkman Jan 30 at 8:01
show 2 more comments

Your question confuses me a little. But have you looked into draggables and sortables from the jQuery UI api.

http://jqueryui.com/sortable/

http://jqueryui.com/droppable/

They're good for enabling self sorting containers. And given that they apply to divs you should be able to get them to work for this. (given a bit of jQuery elbow-grease)

share|improve this answer
See, in a RTE, the user starts typing something, just like in Word or GMail compose widget. They also might paste a chunk of text/graphics/multimedia from some source and paste it in one go. So after he has a pasted a chunk of text, say 30 lines, he wants to insert an image i between the 10th and 11th line. So the first 10 lines now should wrap up in one divi, the lines 11-20 in another, and the image be placed in between... – Cupidvogel Jan 29 at 19:42

Your Answer

 
discard

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

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