I have a document with headings and unordered lists.
How can I use JQuery to select a given heading (by its unique class name) AND all content between that heading and the next heading?
|
1
|
I have a document with headings and unordered lists. How can I use JQuery to select a given heading (by its unique class name) AND all content between that heading and the next heading?
|
|||
|
|
|
|
Perhaps you could start with your desired start-element, and then grab each sibbling as long as it's not the ending tag. When you come across the ending tag, break your loop:
With the following:
So think of it more like "Get All Sibblings Until" |
|||
|
|
|
Maybe, with
Why do I use text(), because html() will only return the inner html of the first result element. Regards |
||
|
|
|
|
If your elements are at the same level, something like this:
i.e. your next heading element is not a child of an element at the same level as the first heading element, you can try this code:
|
||
|
|
|
Your suggestions are great, but aren't what I'm looking for. In the below code, for example, I would like to access only the "h1" with id of "heading2" and everything up to, but not including the "h1" with id of "heading3". The jquery examples provided above will access everyting after the first "h" tag that is not an "h" tag. ... or, correct me if I'm wrong :)
|
||
|
|
|
|
Thanks Jonathan. That seems like it will do the trick, but I can't think of a way to do it with JQuery. Any hints? |
||
|
|
|
|
Hi, yeah you're right, this will only avoid the desired selector, maybe it needs to be more detailed:
Regards |
||
|
|
|
|
hi, i have a source site that have content with incremental link. (somewebsite.com/NewsDetail.aspx?nID=) [=1,2,3,....] and source code: 1- Title Tag
2- Content:
I want to post that content to my wordpress automatically. is there any script that selects content between two tags from html source code & post to wordpress? |
||
|
|