How to pass ajax value to controller in codeigniter?

How to retreive texarea value in jquery?

  • sumit.html <form id="form" action="" method="post" name="form"> Enter number: <input id="number" type="text" name="number" /> <input id="name" type="text" name="name" /> <input id="password" type="password" name="password"/> <textarea cols="40" rows="10" id="textarea" name="textarea"></textarea> <input id="submit" type="submit" value="Calculate Square Root" name="submit"/> </form> <p id="result"> script.js /* * To change this template, choose Tools | Templates * and open the template in the editor. */ $(document).ready(function() { $('#form').submit(function() { var number = $('#number').val(); var name = $('#name').val(); var pass=$('#password').val(); var text=$('#textarea').val(); // var text = $('textarea#textarea').text(); //var text1=document.form.textarea.value; // var text=document.getElementById('textarea')… $.ajax({ type: "post", url: "calculate.jsp", data: "number=" + number+"&pass="+pass+"&text="+text+"&nam… success: function(msg) { $('#result').hide(); $("#result").html("<h3>" + msg + "</h3>") .fadeIn("slow"); } }); return false; }); }); but textarea value is showing null. i have retreived value in jsp

  • Answer:

    I dont know much about your question but....my roomie and i are having a bet to see who can get the most pts. ... so please? i dont wanna do dishes. lol :P. please and thankk youuu.

Prerna Golani at Yahoo! Answers Visit the source

Was this solution helpful to you?

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.