I want to compare 2 values under some conditions.
If $(".value1").text() and $(".value2").text() start with "v", then check whether
number of $(".value1").length (in this case 0.1)) < $(".value1").length (in this case 0.4)
<div class="value1">v0.1</div>
<div class="value2">v0.4</div>
First, I want to check whether the value of the div starts with "v", then I want to compare the value after the "v".
How would I do that and how would the syntax look like?
Your help is much appreciated.
1.0and0.5would say thatv1.0>v0.5? You're mentioning length and I'm not sure if you REALLY care about the length, or if you're doing version comparison. Also, what about multi-part versions, e.g.v1.5.2.5as is common for versioning? – Eli Gassert Nov 19 '12 at 16:25$(".value1").lengthis not0.1, it's1(because there is only 1 DOM element in the jQuery object). – Rocket Hazmat Nov 19 '12 at 16:27