 brammeke
|
Hi, I want a script for users to rate my products. Is there someone who has one that is available with Weebly. I prefer a SEO-friendly one.
I already tested one on : http://www.serresvantack.be/testproduct.html. It’s good, but it doesn’t safe/publishes the results on the site.
|
 brammeke
|
Some extra info:
I need to lin this script to the post.js I think:
<a href="#" title='1 star out of 5'>1</a>
<a href="#" title='2 star out of 5'>2</a>
<a href="#" title='3 star out of 5'>3</a>
<a href="#" title='4 star out of 5'>4</a>
<a href="#" title='5 star out of 5'>5</a>
<!-- used to show "success" message after vote -->
This is my post.js:
function vote(amnt){
$.ajax({
type: "POST",
url: "files/theme/post.php",
data: "item_id=12345&vote=" amnt,
dataType: "json",
success: function(res){
$('#current-rating').width(res.width);
$('#current-rating-result').html(res.status);
}
});
}
Post.php is empty.
Can someone help please? Thx!
|
 Joe
|
I’m also looking for some helping finding a good rating script to integrate into a weebly site I’m building – can anyone help?
|