Hello!
I have created a styled hr tag and want to use it inside ui accordion after every item like this code:
- <div id="accordion">
<h3><a href="#">item#1</a></h3>
<div><p></p></div>
<hr />
- <h3><a href="#">item#2</a></h3>
<div><p></p></div>
<hr />
- <h3><a href="#">item#3</a></h3>
<div><p></p></div>
<hr />
- <h3><a href="#">item#4</a></h3>
<div><p></p></div>
<hr />
</div><!-- End accordion -->
But when I put these hr tags, accordion doesn't work.
I really in need of doing that.
any helps?
Kind regards!
Alireza.M