How do you write the following code using the rails content_tag helper:
<div class="input-group date" data-provide="datepicker">
<input type="text" class="form-control">
<div class="input-group-addon">
<span class="glyphicon glyphicon-th"></span>
</div>
</div>
You can write this code with content_tag following bellow steps -
Step 1. Go to your application helper files and add below helper method inside application helper file -
end
Step - 2. Call this helper method to your view files. For example -
Hope it should work.