jQuery Ajax Loading
by hamix
HTML
and another text followed by <div class="someText"></div>Some text followed by
CSS
#wait {
text-align:center;
display:none;
width:200px;
height:89px;
border:0px solid black;
position:absolute;
top:50%;
left:50%;
padding:2px;
'
}
JavaScript
var texts = $('.someText, body').map(function(){
return this.previousSibling.nodeValue
});
alert(texts[0]); // "Some text followed by "
alert(texts[1]); // " and another text followed by "