I have a anchor <a></a> with an attribute rel. in the rel value there is html, such as <a rel="html=<div>This is a test</div>. I want to update html inside of rel value, I can update the actual change on the page but if i go to the next slide and come back, its back to what it was before because the rel value is not updated. I am not sure how to go about doing this. Any suggestions, I am using Clearbox by the way.
Example(I know the html is incorrect on here, but it is correct on my page. I just need to know how to update it through jquery or any other way)
<a rel="html=<div class="testclass"> This is a test</div></a>
a piece of the html element (not the a) Needs to be changed to
<a rel="html=<div class="testclass"> No more testing </div></a>
relis not a place to put arbitrary data. In fact, you shouldn't be storing HTML markup within HTML attributes. – BoltClock♦ Nov 30 '11 at 19:31atag never gets closed. Should at least be<a rel="html=<div class=\"testclass\"> This is a test</div>"></a>. – Smamatti Nov 30 '11 at 19:32<a rel="html=<div class=\"testclass\"> This is a test</div>">link</a>– jValdron Nov 30 '11 at 19:34