Welcome Guest, Not a member yet? Register   Sign In
jquery and CI
#3

[eluser]mehwish[/eluser]
I can expalin my context to you please consider it and tell me the solution.

Actually i have a controller "my_controller" and from it i am loading view "my_view" and i have also included some jquery functions in "my_view" like this:

my_view.php

Code:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
[removed]
</head>

<body>
<h2>type your query: </h2>
<div>&lt;textarea cols="50" rows="4" name="query_box" id="textbox"&gt;&lt;/textarea></div><br/>

<div>
&lt;input type='button' value='Add Button' id='addButton'&gt;
&lt;input type='button' value='Remove Button' id='removeButton'&gt;
&lt;input type='button' value='Get TextBox Value' id='getButtonValue'&gt;
&lt;input type='button' value='doneButtonvalue' id='doneButton'&gt;
</div>

[removed]

var counter=2;
var m='';
$(document).ready(function() {
      $("#addButton").click(function(){
          counter++;
          $(this).before(/*'<h4>box'+counter+'</h4>*/'&lt;input type="textbox" name="textbox' + counter + '" id="textbox' + counter + '" value="textbox'+ counter + '" /&gt;&lt;br/>')
          m=$('#textbox' + counter).val();
          alert(m);

});
});
[removed]


now I want to return "m" and "counter" values so that i can access them through my controller or if not from controller atleast i can echo "m" and "counter" outside the script tag in the same view file. I hope you got my point ... please tell me how it can be done ?


Messages In This Thread
jquery and CI - by El Forum - 07-08-2011, 05:18 AM
jquery and CI - by El Forum - 07-08-2011, 07:24 AM
jquery and CI - by El Forum - 07-08-2011, 09:34 AM
jquery and CI - by El Forum - 07-08-2011, 10:37 AM
jquery and CI - by El Forum - 07-08-2011, 01:13 PM
jquery and CI - by El Forum - 07-08-2011, 01:16 PM
jquery and CI - by El Forum - 07-08-2011, 01:18 PM
jquery and CI - by El Forum - 07-08-2011, 01:54 PM
jquery and CI - by El Forum - 07-09-2011, 02:56 AM
jquery and CI - by El Forum - 07-10-2011, 06:27 AM



Theme © iAndrew 2016 - Forum software by © MyBB