I'm using this function, to submit form in the background, with custom messages. It works perfectly, except with textarea fields. I've read that the serialize function has problems with ex. linebreaks.

 $(function() {
      $("#comment_form").validate({    submitHandler: function(form) {
        $.post('/u/r/l/', $("#comment_form").serialize(),
 function(data) {
            $('#comment_container').html(data);
                });
            }
        });

The textarea is a markitup! editor area.

link|improve this question

73% accept rate
Please format your code to use newlines and tabulations :) – Seth Alexander Bird Nov 6 '10 at 22:19
I've did, the editor ruined it. But thx ;) – wintercounter Nov 6 '10 at 22:20
Take a look here, it may help: api.jquery.com/serialize/#comment-67394779 – Archonix Nov 6 '10 at 22:20
Just to make sure I'm not jumping to wrong conclusions: are you trying to have the markitup textarea (that the user himself is changing) be serialized into data to send to the server? – Seth Alexander Bird Nov 6 '10 at 22:24
Yes, that is the point. Maybe the solution will be that Achonix has linked, but i'm only beginner in jquery, and can't implent that to my script :S. (I'm rather a XHTML+CSS, designer pro :P ) – wintercounter Nov 6 '10 at 22:32
show 3 more comments
feedback

2 Answers

up vote 1 down vote accepted

As stated here: http://api.jquery.com/serialize/#comment-67394779

function keepLB (str) { 
  var reg=new RegExp("(%0A)", "g");
  return str.replace(reg,"%0D$1");
}

$(function() {
  $("#comment_form").validate({ submitHandler: function(form) {
    $.post('/u/r/l/', keepLB($("#comment_form").formSerialize()), function(data) {
      $('#comment_container').html(data);
    });
  }
});

If it doesn't work, manually urlencode the textarea data:

$(function() {
  $("#comment_form").validate({ submitHandler: function(form) {
    $.post('/u/r/l/', "textareadata="+escape($("#mytextarea").value), function(data) {
      $('#comment_container').html(data);
    });
  }
});

And if you also want to send other form contents (note: don't give the textarea a "name" here, just an id!):

$(function() {
  $("#comment_form").validate({ submitHandler: function(form) {
    $.post('/u/r/l/',
    $("#comment_form").formSerialize()+"&textareadata="+escape($("#mytextarea").value),
    function(data) {
      $('#comment_container').html(data);
    });
  }
});
link|improve this answer
Doesn't submit my comment at all :S – wintercounter Nov 6 '10 at 23:49
@wintercounter: Which one? The second one only sends the textareas content. – thejh Nov 6 '10 at 23:52
I have many hidden fields too generated by the CMS so that wouldn't be ok. If the textareas name is "comment", than this: <?php echo $_POST["comment"]; ?> should print the jQuery'ed request? – wintercounter Nov 6 '10 at 23:55
In this example, the data gets sent under the name "textareadata" and gets read from the element with the id "mytextarea". – thejh Nov 7 '10 at 0:01
Something happened :) – wintercounter Nov 7 '10 at 0:16
show 3 more comments
feedback

One thought (if standard usage of jQuery serialize isn't working) is that the markitup code is taking that textarea and do something fancy with it so that it doesn't even act like a textarea anymore. Is there some way in Markitup API to retrieve the data perhaps?

link|improve this answer
It surely have, but don't how to use :S – wintercounter Nov 6 '10 at 22:32
Tried without markitup with a plain textarea. It didn't work. – wintercounter Nov 6 '10 at 23:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.