Changing markup dinamically
I don't know if this is possible but if it's don't know how to do this. See I have this markup
- <ul class="error_list">
- <li>Required</li>
- </ul>
But I'll like to change using jQuery if is possible to this:
- <div class="alert">
- <button type="button" class="close" data-dismiss="alert">×</button>
- <strong>Warning!</strong> Required.
- </div>
It's possible? Any help?