Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My situation here is that, I have asp Imagebuttons on my web page which are dynamically generated. When I Click on one ImageButton I see the other dynamically created ImageButtons which are related to it (Relation is maintained in Database). Now when I clicked on any Imagebutton I need to draw a line between the clicked ImageButton and the related Imagebuttons which get displayed on the web page. As I am working with web application and not windows application I cannot access the drawing library. So is there any way to draw lines using javascript or jquery. Everything here click event, Imagebuttons are dynamic.

share|improve this question

1 Answer

up vote 3 down vote accepted

There are a lot of options:
http://jsbin.com/enime3/1/edit
http://raphaeljs.com/
http://www.amaslo.com/2012/06/drawing-diagonal-line-in-htmlcssjs-with.html

Similar questions on SO:
How to draw a line between 2 elements using JQuery and refreshing that line?
Easiest way to "draw" simple lines over an image with jQuery and save to Rails DB?

share|improve this answer
thanks a lot. 1 more thing, without clicking the dynamic images can i know the co-ordinates of the imagebuttons(top,Left). On page load my ImageButtons are getting placed on the web page dynamically. So once i find the co-ordinates I can draw a line between them. – Ankur Deshpande Nov 19 '12 at 8:17
@AnkurDeshpande take a look at this: stackoverflow.com/questions/1002934/… or this stackoverflow.com/questions/683339/… – Ngm Nov 19 '12 at 9:03

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.