I have the following code in my application.
<div title="Please Click Here to Expand" class="technology3 closedlanguage" headerindex="0h">
<span class="accordprefix">
<img src="http:www.test.com/expanded.gif" style="width:13px; height:13px; margin-Right:20px">
</span>
Need this text<span class="accordsuffix"></span></div>
I need to get text between "accordprefix" and "accordsuffix" classes which is "Need this text"
for this i did following code.
$(window).load(function(){
$(".accordprefix").each(function(){
alert($(this).next().html());
});
});
but its not working.Please give any suggestions.