clipbucket/upload/js/rating_update.js
Arslan Hassan 280d287981 Added : Playlist System
Added : Ajax System
Added : Ajax comments
Added : New rating
Added : Ajax Add to favorites
Added : Ajax share this
Added : Ajax Flag Video
Added : new watch video page
Added : New ClipBucket V2 Template
2009-11-30 19:46:45 +00:00

22 lines
No EOL
331 B
JavaScript

/**
* Function used to load editor's pic video
*/
function rate(id,rating,type)
{
var page = baseurl+'/ajax.php';
$.post(page,
{
mode : 'rating',
id:id,
rating:rating,
type:type,
},
function(data)
{
if(!data)
alert("No data");
else
$("#rating_container").html(data);
},'text');
}