Go Back   CodingForums.com > :: Client side development > JavaScript programming > JavaScript frameworks

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 10-10-2012, 07:40 PM   PM User | #1
WolfShade
Regular Coder

 
Join Date: Apr 2012
Location: St. Louis, MO, USA
Posts: 950
Thanks: 7
Thanked 98 Times in 98 Posts
WolfShade is an unknown quantity at this point
Question Trying to sort, can't get it to work

Hello, everyone.

I am trying to sort something that isn't starting as an array, but I'm trying to make it into an array, sort it, then put it back as a string.

I have a SELECT tag that allows multiple selections, and an "ADD" button that calls a function that will populate an empty div with the TEXT of whatever was selected, separating each selection with "<br />". So, let's say that three options were highlighted and the add button clicked. The div would then look like this (in code, anyway.)
Code:
<div id="selectedDevs">Jack Black<br />ZZTop<br />Madonna</div>
This much is working great.

But I'm trying to use jQuery to sort the values.

Code:
$('#selectedDevs').html($('#selectedDevs').html().split('<br />').sort().join('<br />'));
It does not change anything. Any suggestions?

Thank you,
__________________
^_^

If anyone knows of a website that can offer ColdFusion help that isn't controlled by neurotic, pedantic jerks* (stackoverflow.com), please PM me with a link.
*
The neurotic, pedantic jerks are not the owners; just the people who are in control of the "popularity contest".

Last edited by WolfShade; 10-10-2012 at 08:53 PM..
WolfShade is offline   Reply With Quote
Old 10-10-2012, 08:53 PM   PM User | #2
WolfShade
Regular Coder

 
Join Date: Apr 2012
Location: St. Louis, MO, USA
Posts: 950
Thanks: 7
Thanked 98 Times in 98 Posts
WolfShade is an unknown quantity at this point
I fixed it, but I don't know why it's working.

All I did was replace <br /> with <BR> in the split.

Code:
$('#selectedDevs').html($('#selectedDevs').html().split('<BR>').sort().join('<br />'));
The split was not seeing <br />, for some reason.
__________________
^_^

If anyone knows of a website that can offer ColdFusion help that isn't controlled by neurotic, pedantic jerks* (stackoverflow.com), please PM me with a link.
*
The neurotic, pedantic jerks are not the owners; just the people who are in control of the "popularity contest".
WolfShade is offline   Reply With Quote
Old 10-11-2012, 07:52 AM   PM User | #3
Dormilich
Senior Coder

 
Dormilich's Avatar
 
Join Date: Jan 2010
Location: Behind the Wall
Posts: 2,873
Thanks: 9
Thanked 291 Times in 287 Posts
Dormilich is on a distinguished road
HTML does not have a <BR /> element. upon reading in an XHTML document through the HTML parser (which is not done only when the document is served with an XHTML MIME-Type) the elements are converted to valid HTML elements, i.e. <BR> (and that is what is read by the .html() method).

in short, JS accesses the parsed HTML document, not the written source code.
__________________
please post your code wrapped in [CODE] [/CODE] tags
Dormilich is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 09:02 PM.


Advertisement
Log in to turn off these ads.