Can html text in p tag is resizable using jquery-ui or without p tag in a div tag is resizable? I have done resizing the image using jquery ui from following example but tex
Text sizing has nothing to do with jQuery specifically. You can tie a CSS property to a slider, however.
$('#slideBar').slider({ startValue: 12, minValue: 0, maxValue: 100, stop: function(e, ui) { $("#text").css({fontSize: ui.value + 8}); } });