อย่างข้อความเก็บจากการ Post แต่ยังนี้จะเก็บยังไง ครับ Code (PHP)
<label class="txt-head">ความถนัด:</label> <input type="text" class="inputs" name="skill_bold" id="skill_bold" placeholder="ลำดับ"><br>
<label class="txt-head">ระดับความสามารถ:</label> <div id="range"><span id="currentVal">5</span></div></center>
<script type="text/javascript">
(function() {
$("#range").slider({
range: "min",
max: 10,
value: 5,
slide: function(e, ui) {
$("#currentVal").html(ui.value);
}
});
}).call(this);
</script>
<!-- JS to add -->
<script type="text/javascript">
$(document).ready(function(){
$(".exemple2").jRating({
type:'small', // type of the rate.. can be set to 'small' or 'big'
length : 40, // nb of stars
decimalLength : 1 // number of decimal in the rate
});
});
</script>