Is it possible to choose to display an HTML form for rating even when JavaScript is enabled.

I believe it is possible to swap out a loaded .js file, would that be the way to go to get this function or is there another way?

Comments

captcha’s picture

I found that by commenting out the following lines in the jquery.rating.js file, i could get an html form.

if (Drupal.jsEnabled) {
  $(document).ready(function() {
    $('div.fivestar-form-item').rating();
    $('input.fivestar-submit').hide();
  });
}
quicksketch’s picture

Status: Active » Closed (fixed)