Draw lines on div












0














I am using draggable to drag & drop icons on div. I can put icons on div & drag them easily. But I don't know how can I achieve the "Scribble" functionality (i.e., using mouse like pen to draw lines on div, like we can do on canvas).



Following is the sample code that I am trying to use:



    <!DOCTYPE html>
<html>
<head>
<style>

.dragContainer, .dragContainer2 {
width:1100px;
height:600px;
border: solid 1px green;
}
</style>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function () {
$("p").click(function () {
$(this).hide();
});
});
function AddIcon(lnk) {
var icon = '<div class="draggable cross" class="ui-widget-content" style="position:absolute;">' +
'<a href="#" onclick="CloseMe(this); return false;">X</a>' +
'<p class="croxx"><img src="' + $(lnk).attr("data-icon-path") + '" alt="' + $(lnk).attr("data-icon-name") + '"/></p>' +
'</div>';
$(".dragContainer").append(icon);
$(".draggable").draggable({
scroll: false
});
}
</script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
</head>
<body>

<a title="test1" href="#" onclick="AddIcon(this); return false;" data-icon-path="https://cdn1.iconfinder.com/data/icons/Vista-Inspirate_1.0/64x64/apps/demo.png"><img src="https://cdn1.iconfinder.com/data/icons/Vista-Inspirate_1.0/64x64/apps/demo.png" alt="" /></a>

<div class="dragContainer"> </div>

</body>
</html>


If is there any way to achieve paint like functionality (drawing lines with mouse) with draggable.










share|improve this question
























  • Try this :jsfiddle.net/NWBV4/446
    – i_th
    Nov 13 at 15:57










  • @i_th your solution is using canvas but my requirement is to draw lines on dragger div, is this possible as i have tried this but no success?
    – user1400290
    Nov 14 at 7:25
















0














I am using draggable to drag & drop icons on div. I can put icons on div & drag them easily. But I don't know how can I achieve the "Scribble" functionality (i.e., using mouse like pen to draw lines on div, like we can do on canvas).



Following is the sample code that I am trying to use:



    <!DOCTYPE html>
<html>
<head>
<style>

.dragContainer, .dragContainer2 {
width:1100px;
height:600px;
border: solid 1px green;
}
</style>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function () {
$("p").click(function () {
$(this).hide();
});
});
function AddIcon(lnk) {
var icon = '<div class="draggable cross" class="ui-widget-content" style="position:absolute;">' +
'<a href="#" onclick="CloseMe(this); return false;">X</a>' +
'<p class="croxx"><img src="' + $(lnk).attr("data-icon-path") + '" alt="' + $(lnk).attr("data-icon-name") + '"/></p>' +
'</div>';
$(".dragContainer").append(icon);
$(".draggable").draggable({
scroll: false
});
}
</script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
</head>
<body>

<a title="test1" href="#" onclick="AddIcon(this); return false;" data-icon-path="https://cdn1.iconfinder.com/data/icons/Vista-Inspirate_1.0/64x64/apps/demo.png"><img src="https://cdn1.iconfinder.com/data/icons/Vista-Inspirate_1.0/64x64/apps/demo.png" alt="" /></a>

<div class="dragContainer"> </div>

</body>
</html>


If is there any way to achieve paint like functionality (drawing lines with mouse) with draggable.










share|improve this question
























  • Try this :jsfiddle.net/NWBV4/446
    – i_th
    Nov 13 at 15:57










  • @i_th your solution is using canvas but my requirement is to draw lines on dragger div, is this possible as i have tried this but no success?
    – user1400290
    Nov 14 at 7:25














0












0








0







I am using draggable to drag & drop icons on div. I can put icons on div & drag them easily. But I don't know how can I achieve the "Scribble" functionality (i.e., using mouse like pen to draw lines on div, like we can do on canvas).



Following is the sample code that I am trying to use:



    <!DOCTYPE html>
<html>
<head>
<style>

.dragContainer, .dragContainer2 {
width:1100px;
height:600px;
border: solid 1px green;
}
</style>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function () {
$("p").click(function () {
$(this).hide();
});
});
function AddIcon(lnk) {
var icon = '<div class="draggable cross" class="ui-widget-content" style="position:absolute;">' +
'<a href="#" onclick="CloseMe(this); return false;">X</a>' +
'<p class="croxx"><img src="' + $(lnk).attr("data-icon-path") + '" alt="' + $(lnk).attr("data-icon-name") + '"/></p>' +
'</div>';
$(".dragContainer").append(icon);
$(".draggable").draggable({
scroll: false
});
}
</script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
</head>
<body>

<a title="test1" href="#" onclick="AddIcon(this); return false;" data-icon-path="https://cdn1.iconfinder.com/data/icons/Vista-Inspirate_1.0/64x64/apps/demo.png"><img src="https://cdn1.iconfinder.com/data/icons/Vista-Inspirate_1.0/64x64/apps/demo.png" alt="" /></a>

<div class="dragContainer"> </div>

</body>
</html>


If is there any way to achieve paint like functionality (drawing lines with mouse) with draggable.










share|improve this question















I am using draggable to drag & drop icons on div. I can put icons on div & drag them easily. But I don't know how can I achieve the "Scribble" functionality (i.e., using mouse like pen to draw lines on div, like we can do on canvas).



Following is the sample code that I am trying to use:



    <!DOCTYPE html>
<html>
<head>
<style>

.dragContainer, .dragContainer2 {
width:1100px;
height:600px;
border: solid 1px green;
}
</style>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function () {
$("p").click(function () {
$(this).hide();
});
});
function AddIcon(lnk) {
var icon = '<div class="draggable cross" class="ui-widget-content" style="position:absolute;">' +
'<a href="#" onclick="CloseMe(this); return false;">X</a>' +
'<p class="croxx"><img src="' + $(lnk).attr("data-icon-path") + '" alt="' + $(lnk).attr("data-icon-name") + '"/></p>' +
'</div>';
$(".dragContainer").append(icon);
$(".draggable").draggable({
scroll: false
});
}
</script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
</head>
<body>

<a title="test1" href="#" onclick="AddIcon(this); return false;" data-icon-path="https://cdn1.iconfinder.com/data/icons/Vista-Inspirate_1.0/64x64/apps/demo.png"><img src="https://cdn1.iconfinder.com/data/icons/Vista-Inspirate_1.0/64x64/apps/demo.png" alt="" /></a>

<div class="dragContainer"> </div>

</body>
</html>


If is there any way to achieve paint like functionality (drawing lines with mouse) with draggable.







javascript draggable jquery-ui-draggable






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 13 at 15:37

























asked Nov 13 at 9:04









user1400290

62441330




62441330












  • Try this :jsfiddle.net/NWBV4/446
    – i_th
    Nov 13 at 15:57










  • @i_th your solution is using canvas but my requirement is to draw lines on dragger div, is this possible as i have tried this but no success?
    – user1400290
    Nov 14 at 7:25


















  • Try this :jsfiddle.net/NWBV4/446
    – i_th
    Nov 13 at 15:57










  • @i_th your solution is using canvas but my requirement is to draw lines on dragger div, is this possible as i have tried this but no success?
    – user1400290
    Nov 14 at 7:25
















Try this :jsfiddle.net/NWBV4/446
– i_th
Nov 13 at 15:57




Try this :jsfiddle.net/NWBV4/446
– i_th
Nov 13 at 15:57












@i_th your solution is using canvas but my requirement is to draw lines on dragger div, is this possible as i have tried this but no success?
– user1400290
Nov 14 at 7:25




@i_th your solution is using canvas but my requirement is to draw lines on dragger div, is this possible as i have tried this but no success?
– user1400290
Nov 14 at 7:25

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53277302%2fdraw-lines-on-div%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53277302%2fdraw-lines-on-div%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

How to pass form data using jquery Ajax to insert data in database?

National Museum of Racing and Hall of Fame

Guess what letter conforming each word