I have a search form with a number of text inputs & drop downs that submits via a GET. I'd like to have a cleaner search url by removing the empty fields from the querystring when a search is performed.
var form = $("form");
var serializedFormStr = form.serialize();
// I'd like to remove inputs where value is '' or '.' here
window.location.href = '/search?' + serializedFormStr
Any idea how I can do this using jQuery?
I wasn't able to get Tom's solution to work (?), but I was able to do this using
.filter()
with a short function to identify empty fields. I'm using jQuery 2.1.1.This works for me:
You might want to look at the .each() jquery function, that allows you to iterate through every element of a selector, so this way you can go check each input field and see if it's empty or not and then remove it from the form using element.remove(). After that you can serialize the form.
I have used above solution but for me those did not worked. So I have used following code
May be useful for someone
You could do it with a regex...
Test cases:
I would look at the source code for jQuery. In the latest version line 3287.
I might add in a "serialize2" and "serializeArray2" functions. of course name them something meaniful.
Or the better way would be to write something to pull the unused vars out of the serializedFormStr. Some regex that looks for =& in mid string or ending in = Any regex wizards around?
UPDATE: I like rogeriopvl's answer better (+1)... especially since I can't find any good regex tools right now.