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 ArticleAnswer 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 ArticleAnswer 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 ArticleAnswer 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 ArticleAnswer 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 ArticleAnswer 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 ArticleHow 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