Search Results

1
vote

Using jQuery to find the number of TR elements in a given table

Browsers automatically add a tbody element to the DOM. var trCount = $("#table > tbody > tr").size(); The "table tr" answers posted will not wor …
3
votes

How do I get the number of days between two dates in jQuery?

function parseDate(str) { var mdy = str.split('/') return new Date(mdy[2], mdy[0]-1, mdy[1]); } function daydiff(first, second) { return (second-first)/(1000*60*60*24) } alert …
1
vote

Using the context of the ‘this’ keyword with jQuery

sometimes it refers to a jQuery object e.g. $(this).val(). this here refers to a DOM element; the $() function call is what wraps the DOM …
5
votes

Count number of table rows between two specific rows with jQuery

This: $('#parent_1 ~ .child:not(#parent_2 ~ *)').size() Translation: match all elements of class child that are a sibling of, and come after, …
-1
votes

Javascript variable evaluation in a map.

If you're set on doing it in a single expression, you could write a helper function like the following (untested): function objectFromPairs() { var o = {}; for (var i = 0; i …
1
vote

i tried serialize() but doesnt seem to work ? what am i doing wrong?

Try: $.post("register_user.php", $('#theForm').serialize(), function(data) { //... Edit: You should not be wrapping the return value of …
1
vote

What is the difference between this.click() and $(this).click() ?

this.click() calls the browser DOM method click(). $(this).c …