, , ,

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:

How a Loop Through a JavaScript Object?

How a Loop through a JavaScript object?Javascript Objects are Variables Containing Variables.In Java…

How to Search Item in List in JavaScript

Multi Step Form Using HTML and JavaScript

Form is the important part in web design. Form is the primary interface to the user by which user is…

How to Create Custom CSS, jQuery Autocomplete Plugin

Web developers often use autocomplete features in websites as a part of their work. Yet lot of good …

How to Make Sticky Sidebar Using jQuery and CSS

Sticky sidebar is an essential part of web development. Not in all cases but for some cases where ou…

Selectors, Animation, and AJAX – jQuery Tutorial And Examples

By now I’m sure you have grasped at least the basics and simplicity of the jQuery library. Now it’s …