How to Send Output to a HTML Page?
-
The statuts show in the input field. However, Is it possible to display weight status value in the html text instead of an input filed.
My code:
(function(){
var average = fieldname4;
if(average<18.5) return ‘Underweight’;
if(average<25) return ‘Healthy’;
return ‘Overweight’;
jQuery(‘.status-here’).html(average);
})()
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘How to Send Output to a HTML Page?’ is closed to new replies.