Tizen UX toggle switch has image button for on/off.
To display image toggle switch, use jqueryMobile data-role="slider"
then remove text for option tag
add element's width to css file
<select data-role="slider">
<option value="off"></option>
<option value="on"></option>
</select>
To display jqm style swtich,
set text for option tag
add element's width to css file
.containing-element .ui-slider-switch {
  width : 9em;
}