Tagged Questions

4
votes
4answers
8k views

How can I add a list item in order using jQuery?

Does anyone know how to add an item to a list but do it so it's ordered alphabetically using jQuery? I've got the following code that just adds an item from a dropdown to the end of the list: ...
3
votes
1answer
85 views

Wrapping a tag inside a tag in TinyMCE

I'm trying to figure out how I can wrap another HTML tag within when a users click on the ordered list button in TinyMCE. Example: <ol> <li>something</li> </ol> Will ...
1
vote
3answers
28 views

Get the words from a string in multiple divs using a for loop with jQuery or regular expression

I am currently creating list on the fly with jQuery. The solution below is somewhat hacky I know, so I am wondering if its possible to stick it in a loop, so I can iterate through each div and create ...
1
vote
2answers
44 views

Get the words from a string with jQuery regular expression

The content is brought dynamically so I need to be able to put in a ordered list on the fly.. Currently, it's bringing in my text like this with the white-spaces: <div class="born">BORN ...
1
vote
1answer
231 views

Number LI's using jQuery

I have an ordered list, but I want to number is manually in a separate span tag than use the default list-style: decimal; <ol> <li><span>1</span> item 1</li> ...
0
votes
2answers
31 views

Use jquery to apply a class if child is present

I have a list that at times has more than one child. I'd like to style the parent if contains a number of children. I've tried a few options without success. Any help would be appreciated. <ol ...
0
votes
1answer
162 views

How to get the value of this nested div

I need to get the value of the div "code" <ol id="selectable"> <li> <div id="img01" style:"background-image: url(…);"> <div id="name01">Frekad</div> ...
0
votes
1answer
396 views

Dynamic Odered list with jquery selectable control

I got this mockup, I need to load dynamically pictures from a db and once loaded I need to click on each picture in order to mark what scholar will be promoted to the next grade, I'm figuring out mark ...