Skip to main content

All Questions

1 vote
1 answer
220 views

How can I drag selected text from iframe to input/textarea?

Consider this simple example: <input type="text"> <br /> <p>test text</p> <br /> <iframe src="//wikipedia.org/"> I can drag selected text to input ...
Mikhail Gerasimov's user avatar
4 votes
2 answers
7k views

JavaScript/jQuery drag and drop element between two iframes

I have a page with 2 iframes, side by side, both from the same domain. I want to drag'n'drop an element from a specific drag-zone (e.g. a table) of one iframe to a specific dropzone (e.g. a list) on ...
AsGoodAsItGets's user avatar
3 votes
2 answers
1k views

jQuery iFrame drag not working

I need a solution for my jQuery related problem. In order to be able to drop draggable li-elements into an iFrame I have tried this: $(document).ready(function(){ $("li").draggable({ ...
Jon Riel's user avatar
  • 409
0 votes
1 answer
500 views

Drag & Drop in iFrame using jQuery UI issue

I'm using jQuery UI. When I drag element in the iframe and I move mouse out of the iframe, the element is still in the draggable state. So when I move mouse back to the iframe, I can still drag it, ...
Ziemo's user avatar
  • 971
4 votes
1 answer
5k views

jQuery ui draggable drop into an iframe

I am trying to use jQuery ui draggable and droppable and it works fine if i try on the same page. But when I try to drag an element and drop into the droppable area defined in the iframe then it doesn'...
Nirmal Ram's user avatar
  • 1,730
2 votes
1 answer
374 views

Drag parent starting from its iframe child

I've something like this <div draggable="true"> <iframe width="640" height="360" src="http://www.youtube.com/watch?v=dQw4w9WgXcQ?fs=1&amp;feature=oembed" frameborder="0" allowfullscreen="...
mushu301's user avatar
3 votes
2 answers
2k views

Is it possible to float IFrame out of the browser?

I wanted to know if it is possible to float IFrame out of the browser? Is it possible to drag the IFrame outside of the browser? the idea is that my html\js application is like a taskbar and I want ...
Dor Cohen's user avatar
  • 17k
0 votes
1 answer
321 views

how to implement a wizard that will supprt drag/drop of photos

The Setup: I have a page written in JS that has 3 main divs: albums, photos and an image container. Each photo is draggable and the container is droppable (practically the dropped photo is also ...
Salmonela's user avatar