I'm trying to find a text inside a div. The code I have works in all browsers except IE7.

Below is the code:

<div class="demo"> 
   Preveiw
</div>

Jquery:

$(".demo:contains('Preveiw').length") // returns 0 in IE7
link|improve this question
You sure you haven't misspelled preview? – Hosh Sadiq Jan 11 at 9:22
@HoshSadiq It is misspelled, however it's the same in both places so should still work. – Rory McCrossan Jan 11 at 9:23
My bad. jQuery 1.3.5 is rather old, maybe you should consider updating? – Hosh Sadiq Jan 11 at 9:26
feedback

2 Answers

Try this instead

$(".demo:contains('Preveiw')").length
link|improve this answer
not working.Still returns 0 – Nitesh morajkar Jan 11 at 9:17
2  
Here's a fiddle with Stefan's answer: jsfiddle.net/RoryMcCrossan/Y7bG2/2. I've tested it in IE7 and it does appear to work. – Rory McCrossan Jan 11 at 9:25
1  
Are you running it once the DOM is loaded (ready)? Also notice that the :contains selector is case sensitive. – Stefan Jan 11 at 9:33
@Nitesh: Show us a testcase of your problem on jsfiddle.net. Too many inconsistencies here. – Lightness Races in Orbit Jan 11 at 11:07
feedback

It could be that jQuery has not loaded yet try putting your script at the bottom of the page within

 <script defer="defer">

which will rule that out and the code within

  $(document).ready(function() {
        alert($(".demo:contains('Preveiw')").length);
  });

which could be another problem.

here it is on jsFiddle http://jsfiddle.net/kamui/VfhQ6/2/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.