satinjeet / customratings

Custom Rating System

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Custom Rating Module for your web pages.

Just a little plugin to add a custom rating system .. away with the stars and dropdowns and other old system :).

Using Rating Plugin

It is really very simple. Just add the following to the code:

<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="{path_to_js}/src/rating.min.js"></script>

<div class="ratings">
    <div class="inner">
    </div>
</div>

and you can make it "Visible" So , by adding this

<script>
    $(".ratings").rating();
</script>

. and Done...

wanna make it horizontal ??

<script>
    $(".ratings").rating({
        direction: "h"
    });
</script>

and Done...

More Updates coming soon. Just a preview of idea i had in mind.

About

Custom Rating System


Languages

Language:JavaScript 79.8%Language:CSS 20.2%