0

I'm using jquery 1.9 and primeUi 1.0 My primeUI widgets are working fine except rating component. PrimeUI rating component not displaying either. Is their any problem in PrimeUi rating component? I have tried following code.

 <script type="text/javascript">
     $(function() {
       $('#rating').puirating();
     });
 </script>

 <input id="rating" type="hidden" />

Their is no error in Firefox error console.

Akshay Raut
  • 565
  • 1
  • 11
  • 28

1 Answers1

0

Works fine in JSFiddle. Did you include jQuery UI as well?

<input id="rating" type="hidden" />
$('#rating').puirating();
Manuel
  • 3,828
  • 6
  • 33
  • 48