Top Rating Script
I'm trying to get the content rating working in carma. It works in 'Firefox 2' but not in 'Internet Explorer 6' and 'Internet Explorer 7'.
Toomuchmedia support says this: It could be the javascript onClick event that is not working properly. We provide the rate code merely as an example of how the page should be submit. You may have better luck making the ratings into seperate links for each one.
But I have no idea how to do that, can anyone help?
<form action="rating.php" method="GET" id=vote name=vote>
<input type="hidden" name="id" value="{$carma_video.galid}">
<input type="hidden" name="type" value="video"><td align="center" valign="top">
Yours: {if !$carma_video.rating.my}
<input type="image" src="images/star-empty.png" value="1" name="rating" onClick="vote.submit();">
{else}
<input type="image" src="images/star.png" value="1" name="rating" onClick="vote.submit();">
{/if}
{if !$carma_video.rating.my || $carma_video.rating.my <= 1}
<input type="image" src="images/star-empty.png" value="2" name="rating" onClick="vote.submit();">
{else}
<input type="image" src="images/star.png" value="2" name="rating" onClick="vote.submit();">
{/if}
{if !$carma_video.rating.my || $carma_video.rating.my <= 2}
<input type="image" src="images/star-empty.png" value="3" name="rating" onClick="vote.submit();">
{else}
<input type="image" src="images/star.png" value="3" name="rating" onClick="vote.submit();">
{/if}
{if !$carma_video.rating.my || $carma_video.rating.my <= 3}
<input type="image" src="images/star-empty.png" value="4" name="rating" onClick="vote.submit();">
{else}
<input type="image" src="images/star.png" value="4" name="rating" onClick="vote.submit();">
{/if}
{if !$carma_video.rating.my || $carma_video.rating.my <= 4}
<input type="image" src="images/star-empty.png" value="5" name="rating" onClick="vote.submit();">
{else}
<input type="image" src="images/star.png" value="5" name="rating" onClick="vote.submit();">
{/if}
<br>
Average: {if !$carma_video.rating.average}
<img src="images/star-empty.png" width="12" height="11" />
{elseif $carma_video.rating.average < 1}
<img src="images/star-half.png" width="12" height="11" />
{else}
<img src="images/star.png" width="12" height="11" />
{/if}
{if !$carma_video.rating.average || $carma_video.rating.average <= 1}
<img src="images/star-empty.png" width="12" height="11" />
{elseif $carma_video.rating.average < 2}
<img src="images/star-half.png" width="12" height="11" />
{else}
<img src="images/star.png" width="12" height="11" />
{/if}
{if !$carma_video.rating.average || $carma_video.rating.average <= 2}
<img src="images/star-empty.png" width="12" height="11" />
{elseif $carma_video.rating.average < 3}
<img src="images/star-half.png" width="12" height="11" />
{else}
<img src="images/star.png" width="12" height="11" />
{/if}
{if !$carma_video.rating.average || $carma_video.rating.average <= 3}
<img src="images/star-empty.png" width="12" height="11" />
{elseif $carma_video.rating.average < 4}
<img src="images/star-half.png" width="12" height="11" />
{else}
<img src="images/star.png" width="12" height="11" />
{/if}
{if !$carma_video.rating.average || $carma_video.rating.average <= 4}
<img src="images/star-empty.png" width="12" height="11" />
{elseif $carma_video.rating.average < 5}
<img src="images/star-half.png" width="12" height="11" />
{else}
<img src="images/star.png" width="12" height="11" />
{/if}
</td></form>
|