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
separate my input fields by horizontal bars
Re: separate my input fields by horizontal bars
$j('<hr/>').insertBefore('.form-group')
;In dv's javascript could work. Did not test it.
Kind regards,
<js />
My AppGini Blog:
https://appgini.bizzworxx.de/blog
You can help us helping you:
Please always put code fragments inside
AppGini 24.14 Revision 1665 + all AppGini Helper tools
<js />
My AppGini Blog:
https://appgini.bizzworxx.de/blog
You can help us helping you:
Please always put code fragments inside
[code]...[/code]
blocks for better readabilityAppGini 24.14 Revision 1665 + all AppGini Helper tools
Re: separate my input fields by horizontal bars
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/>');
Any help offered comes with the best of intentions. Use it at your own risk. In any case, please make a backup of your existing environment before applying any changes.