i have a element with id='dummyfield' and there is div after it with class= 'dummydiv'. How can i know if dummydiv exists after dummyfiled using jquery

Thsi what the html code may look like <input id='dummyfield'><div class='dummydiv'>

link|improve this question

69% accept rate
What do you mean by "after"? – Bemmu Apr 4 '11 at 5:47
is there a case where dummydiv exists even without dummyfield? – corroded Apr 4 '11 at 5:49
@corroded no it's not the case – Web Developer Apr 4 '11 at 5:50
feedback

4 Answers

up vote 7 down vote accepted

Use the adjacent selector : http://api.jquery.com/next-adjacent-Selector/

<input id='dummyfield'><div class='dummydiv'>

if ($('#dummyfield + .dummydiv').length) {
  //field exists 
}
link|improve this answer
feedback

if dummydiv is a child of dummyfield then check

jQuery('#dummyfield > .dummydiv').size()

if dummydiv is sibling of dummyfield then check for

jQuery('#dummyfield +.dummydiv').size()
link|improve this answer
a couple of things. > checks for parent > child and not adjacent. also, length() is a property and not a method. I think you may have meant .size() – JohnP Apr 4 '11 at 5:53
@JohnP i meant that.. – diEcho Apr 4 '11 at 5:53
+1 thanks for fixing. – JohnP Apr 4 '11 at 5:57
feedback

Check-it Out:

JQUERY:

if($("#dummyfield").next(".dummydiv").length>0)
    alert("Exist.");
else
    alert("Not Exist.");

ASPX:

<asp:TextBox ID="dummyfield" runat="server" Width="100px"></asp:TextBox>
<div id="divdummy" class="dummydiv"></div>
link|improve this answer
no need for > 0 when checking for length – corroded Apr 4 '11 at 5:58
yeah in if condition only $("#dummyfield").next(".dummydiv").length is enough. – Sukhi Apr 4 '11 at 6:01
feedback

That will help you.

jQuery.fn.exists = function(){return this.length>0;}

eg:

if($('input[type="password"]').exists())
  alert('exists!');
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.