Login

A problem with jQuery’s .serialize() and the answer

I was having a problem with the jQuery .serialize() function and the good news is that I found the answer to this problem. The Problem The jQuery .serialize() function was returning “” or nothing. Not what I wanted to say the least. Here was the setup. I was using .serialize() like this: ... $(this).parents('.ARow').serialize() ... and the xhtml was: <form class="ARow"> <input class="food_state" [...] [Read full arcticle]
Posted in jQuery | 3 Comments

Grabbing a subsection of input field values

I was looking for a jQuery way of grabbing the values of a subsection of input fields. I know it is more complicated then just getting the $().val() of items because of selection elements. I found the plugin called Values but it was a bit more than I needed. I only need to get values [...] [Read full arcticle]
Posted in jQuery | Leave a comment