jQuery addClass example

Change class name on click in jQuery

by Sampath_Madhuranga

HTML

<html lang="ar">
 <body>
 <div class="form-check" style="width: 49%;text-align: right;position: inherit;display: inline-block;">
  <label class="form-check-label">
	  <input class="form-check-input" type="radio" name="exampleRadios" id="exampleRadios1" value="option1"> فيلا
		<span class="circle">
		  <span class="check"></span>
		</span>
	</label>
</div>
 </body>
</html>

SCSS

html[lang="ar"] .form-check {
  direction: rtl;
}