hi please help me with this :
my application is displaying results from the db ,
in this format
<div class="box" onclick="location.href='http://msn.com'; " >
<span class="title"> MSN</span>
</div>
<div class="box" onclick="location.href='http://yahoo.com'; " >
<span class="title">Yahoo</span>
</div>
<div class="box" onclick="location.href='http://google.com'; " >
<span class="title">Google </span>
</div>
I want to read the attributes inside div ( onclick ) url and redirect it , How can i do this ??
Thanks ,