Feedback tool similar to the Google Feedback based on jQuery and HTML2Canvas.
Load jQuery, the plugin, and its CSS:
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="feedback.js"></script>
<link rel="stylesheet" href="feedback.min.css" />
Init plugin:
<script type="text/javascript">
$.feedback({
ajaxURL: 'http://test.url.com/feedback',
html2canvasURL: 'js/html2canvas.js'
});
</script>
- jQuery
- html2canvas
Pretty much it should be working on any browser with canvas
support. Browsers with no canvas support won't display the feedback button.
http://ivoviz.github.io/feedback/ - Click "Send feedback" at the bottom right of the page.
The information from the client will be sent through ajax post request. The information is in JSON format.
post.browser
- Browser information.post.url
- The page URL. - urlencoded!post.note
- Description of the feedback.post.img
- The screenshot of the feedback. - base64 encoded!post.html
- The structure of the page. - urlencoded!
The URL where the plugin will post the screenshot and additional informations. (JSON datatype)
Default: ''
Whether you want your client to post their browser information (such as useragent, plugins used, etc.)
Default: true
Whether you want your client to post the page's HTML structure.
Default: true
Whether you want your client to post the URL of the page.
Default: true
Url to the proxy which is to be used for loading cross-origin images. If left empty, cross-origin images won't be loaded.
Default: ''
Whether to render each letter seperately. Necessary if letter-spacing is used.
Default: false
The default button text.
Default: Send feedback
The color of the highlight border. You can use values either like 'black', 'red', etc. or HEX codes like '#adadad'.
Default: black
The color of the shadow.
Default: black
Sets the horizontal / vertical distance of the shadow from the shape.
Default: 1
The blur level for the shadow.
Default: black
Sets the type of corner created, when two lines meet.
Default: bevel
Sets border of the highlighted area.
Default: 3
The URL where the plugin can download html2canvas.js from.
Default: html2canvas.js
tpl.description / tpl.highlighter / tpl.overview / tpl.submitSuccess / tpl.submitError (String / HTML)
The template of the plugin. You could change it any time, but keep in mind to keep the elements' ids and classes so the script won't break.
Default: ...
Function that runs when you close the plugin.
Default: null
Changing to false
will remove the borders from the highlighted areas when taking the screenshot.
Default: true
By default when you move your cursor over an element the plugin will temporarily highlight it until you move your cursor out of that area. I'm not exactly sure whether it's a good thing or not, but Google has it, so yeah.
Default: true
Setting this true the user will have to describe the bug/idea before being able to highlight the area.
Default: false
feedback is released under the MIT license. (See LICENSE
)