[jQuery] $.get and all converting null values to null literal
Hello,
when I submit ajax request with null parameter values, it get
submitted as null literal:
$.get('/', {paramvalue1:null}, function(data){});
the url will look like:
</?paramvalue1=null>
I would expect it to look like either </?paramvalue1=>
or better </>
Is it expected behaviour?
Thanks