Documentation

Ctrl+K

Rating

Rating enables you to collect feedback on how you can enhance your product. Also, while unknown to most people, this can help you rank higher on search engines through schema markup. For more details

Square Rating

HTML Code

<select id="square-rating" name="rating" style="display: none;">
    <option value=""></option>
    <option value="1">1</option>
    <option value="2">2</option>
    <option value="3">3</option>
    <option value="4">4</option>
    <option value="5">5</option>
</select>

Script

$(function () {
    $('#square-rating').barrating('show', {
        theme: 'bars-square',
        showValues: true,
        showSelectedRating: false
    });
});