Tagged Questions
5
votes
2answers
283 views
parseInt % and px problem
<div style="left: 100%"></div>
parseInt($("div").css("left"), 10);
When I try to get value of left, some browsers give result in pixels, some in %.
Here is an example ...
3
votes
7answers
65 views
How can I get the width and height of a div element with jquery?
How can I get the width and height of a div element?
for instance,
<div style="width:100px;height:100px;overflow:hidden; float:left; margin:0px 0px 5px 0px; border:1px solid #000;">
...
3
votes
3answers
1k views
In jQuery, should i use parseFloat(el.width()) or parseInt(el.width(),10)? which one is more preferred
I always had this question:
When i dont mind the exact floating number
Which one is preferred?
parseFloat
someValue = parseFloat(el.outerWidth())+parseFloat(ele2.css("marginRight")),
...
1
vote
3answers
136 views
Increment Badge Count
jQuery.fn.add = function() {
var Bnumber = $(this).find(".B_Add");
if (Bnumber) {
Bcount = parseInt(Bnumber.html()) + 1;
$(this).find("div.B_Add").remove();
...
1
vote
3answers
1k views
ParseInt not working on Jquery ajax response
I am having a peculiar problem with getting an integer from an ajax response. Whenever I call the following code, parseInt(data) returns NaN despite data being a string.
function poll() {
...
0
votes
5answers
43 views
Jquery subtracting 1 from a value with .text and keeping html
I'm trying to subtract 1 (one) from a value with jQuery. I've managed to do so like this:
$('.notis').text(parseInt($(".notis").text()) - 1);
Problem is that the <a> this is subtracting from ...
0
votes
1answer
406 views
Comparing 2 times with jquery
Thanks in advance for any help...
I'm trying to (1) generate a begin time and end time for a form, (2) find the difference between the two, and (3) add the difference to a new input.
Here's what I ...
0
votes
1answer
1k views
IE error with parseInt dropdown value (jquery val())
I have an dropdown with the following in it:
<select id="shipping" name="shipping_option">
<option SELECTED value="60">R60</option>
<option value="90">R90</option>
...