Page 1 of 1
separate my input fields by horizontal bars
Posted: 2024-10-27 09:03
by pasbonte
Hello I simply want to separate my input fields by horizontal bars for example, but without going through a plugin or by an external library or maq question is how to put a tag <hr> ??Thank you
- Capture d’écran 2024-10-27 100135.png (25.21 KiB) Viewed 211 times
Re: separate my input fields by horizontal bars
Posted: 2024-10-27 11:09
by jsetzer
$j('<hr/>').insertBefore('.form-group')
;
In dv's javascript could work. Did not test it.
Re: separate my input fields by horizontal bars
Posted: 2024-10-27 12:52
by pbottcher
And if you want to wrap it you might try
Code: Select all
$j('.form-group:first').before('<hr/>');$j('.form-group:last').after('<hr/>');