Quantcast
Channel: How can I store user feedback related to any part of a web page? - Stack Overflow
Browsing latest articles
Browse All 7 View Live

Answer by Carlo for How can I store user feedback related to any part of a...

I kinda like the 2nd solution, but i'd attach the function not to some html entities, but to a well defined div something like: $(document).ready(function() { $("div...

View Article



Answer by meouw for How can I store user feedback related to any part of a...

You could do something like this: The blocks that you would like to be commented on have a class of 'commentable' and have an id. The script below is an outline that works for W3C compliant browsers,...

View Article

Answer by Rene Saarsoo for How can I store user feedback related to any part...

Double-click is bad, because in most browsers you can select words by double-clicking on them. Instead there should be special places on page where you could click to give feedback. See Soviut's answer...

View Article

Answer by Deep Kapadia for How can I store user feedback related to any part...

I am hoping most of your layout is using <div> and <table> tags. As Steven suggested, have unique id's associated with each of your block elements or any other elements that are an integral...

View Article

Answer by Soviut for How can I store user feedback related to any part of a...

I would recommend not having any spot on the site commentable, but instead allow specific elements to be commented on. For instance, if its a blog, you could use each paragraph as an element that could...

View Article


Answer by Steven A. Lowe for How can I store user feedback related to any...

you should be able to write/acquire a hit-test function to see what DOM element(s) are under the mouse cursor when it is double-clicked, and then associate the comments/feedback text with the ID of the...

View Article

How can I store user feedback related to any part of a web page?

I would like users to be able to double click anywhere on the screen to display a form that allows submission of feedback about that very spot. I can think of 2 solutions: Store X,Y coordinates. Had...

View Article
Browsing latest articles
Browse All 7 View Live




Latest Images