$(function(){ $(".ratings").children().not("select").hide(); // Create target element for onHover titles $caption = $(""); $(".ratings").stars({ oneVoteOnly: true, inputType: "select", captionEl: $caption, // point to our newly created element callback: function(ui, type, value) { $.post("/index.cfm/?action=content.ratings", {rate: value, type: $("input[name='type']").val(), rating_id: $("input[name='rating_id']").val() }, function(data) { data = jQuery.trim(data); $(".ratings").stars("select", data); }); } }); $(".ratings").stars("select", 5); // Make it available in DOM tree $caption.appendTo(".ratings"); });