} else {
html += node.innerHtml;
}
});
return html;
}
On Sep 30, 3:01 pm, equallyunequal <[EMAIL PROTECTED]> wrote:
> NodeType Named Constant
> 1 ELEMENT_NODE
> 2 ATTRIBUTE_NODE
> 3 TEXT_NODE
> 4 CDATA_SECTION_NODE
> 5
ion I think I can do it
> with jQuery ..
> do you know what does node.nodeType mean in javascript
> nodeType=1 what does that mean for each value ?
> thanks Pedram
>
> On Sep 30, 8:29 pm, equallyunequal <[EMAIL PROTECTED]> wrote:
>
> > I'm not sure how to do it in a &q
Woops looks like jQuery blog got hit by a sql-injection attack!
On Sep 30, 2:04 pm, zaadjis <[EMAIL PROTECTED]> wrote:
> Right after the script tag with urchin.js. Can the powers that be fix
> this, please?
ROTECTED]> wrote:
> It didn't work Cause the Text isn't concern as a Children and it is in
> No Tag area so when we call $(this).children it returns only the
> Span and if we do $(this).children(":not(span)") it returns NULL ...
> so Equally. what
as a problem for you.
On Sep 30, 11:41 am, equallyunequal <[EMAIL PROTECTED]> wrote:
> jQuery( expression, [context] )
>
> Note the optional context parameter. So, you can do this:
> $("[attrib='value']", this.elements).each( function()
> { console.log(th
jQuery( expression, [context] )
Note the optional context parameter. So, you can do this:
$("[attrib='value']", this.elements).each( function()
{ console.log(this); } );
On Sep 30, 10:51 am, "[EMAIL PROTECTED]"
<[EMAIL PROTECTED]> wrote:
> I was expecting this kind of answer ! :)
>
> Could you i
ht way to Deal with this ...
> I'm still working on thiws and waiting for the best way to it
> Thanks Pedram
>
> On Sep 30, 7:36 am, equallyunequal <[EMAIL PROTECTED]> wrote:
>
> > $("p:not(span)") would select all paragraphs that are not spans...
> >
> um cant you just do something like $("p:not(span)") ??
>
> On Sep 28, 3:48 pm, equallyunequal <[EMAIL PROTECTED]> wrote:
>
> > This should work:
>
> > var clone = $("p").clone();
> > clone.find("span").remove();
>
> >
This should work:
var clone = $("p").clone();
clone.find("span").remove();
clone.each( function() { console.log(this) } );
On Sep 28, 2:13 pm, [EMAIL PROTECTED] wrote:
> Hi Guys,
>
> this is the Code which I am working on
>
>
> Data which I need to select and it hasn't an attribute
> Dat
The length property in a jQuery object or $("#emplist").length refers
to the number of elements that the jQuery selector matched. So, if
your selector was "div", $("div").length would be the number of div
elements in your document. $("#id") doesn't return a single DOM
element, it returns a jQuery
10 matches
Mail list logo