, , ,

Feedback Me: a feedback form which slides from the side of the screen.

Feedback Me is a jQuery plugin that allows user to easily add an animatable UI widget with a feedback form which slides from the side of the screen.
If you got any requests for new features feel free to open an issue or email me vedmack@gmail.com

Features

  • – Bootstrap support
  • – jQuery UI themes support
  • – RTL support
  • – Uses ajax post to send data to server (‘name’, ‘message’ and ’email’ parameters will be send to your servlet/php file etc…)
  • – All labels are customizable
  • – Customizable placeholder (HTML5) for all input fields
  • – Optional required attribute (HTML5) for all input fields with homegrown validation
  • – Optional asterisk next to label of required input fields

Download: https://github.com/vedmack/feedback_me

Demonstration: http://feedback-me.appspot.com/

Plugin homepage: http://feedback-me.appspot.com/

Implementation:

$(document).ready(function(){
 
  var default_options = {
    bootstrap : false,
    show_email : false,
  };
 
  fm.init(default_options );
});

Options:

Screenshots:

Creating a JavaScript Library

I recently wrote a JavaScript library for creating random colors and color schemes, and while I foun…

s3Slider jQuery Plugin & Tutorial

The s3Slider jQuery plugin is made by example of jd`s smooth slide show script. Usage: HTML: Sample …

jQuery Optimization: Avoid Unnecessary Selector

Common subexpression elimination is a common way to optimize any programming code. Doing unnecessary…

Fading Links Using jQuery: dwFadingLinks

Earlier this month, we posted a MooTools script that faded links to and from a color during the mous…

jQuery Flash Plugin

This jQuery plugin is for embedding Flash movies. Pages are progressively enhanced when Flash and Ja…

jQuery Optimization: Optimize Selector

We can also optimize our selector other than being a bit specific on our selector. The key to optimi…

jQuery drop down menu: droppy

Quick and dirty nested drop-down menu in the jQuery style. I needed a nav like this for a recent pro…