Welcome Guest, Not a member yet? Register   Sign In
returning value from jquery to controller
#1

[eluser]mehwish[/eluser]
hi,Can anyone tell me how to return a variable from a jquery function in view to controller?
for example this is what i have written in my view file :

Code:
[removed]

var i=0;

$("button").click(function () {
         myFunction();
         alert(i);
         [b]return i;[/b]             [i]how to return this i variable to controller[/i]  
    });

function myFunction()
{    
    i++;
    $("button").after('<input type="text" name="n"/>',i);
}
[removed]


Actually i know how to pass values using anchor() to controller but it seems different i have tried. Please help me out in passign this i's value from script to controller.

Thank you
#2

[eluser]toopay[/eluser]
search on 'AJAX' keyword.
#3

[eluser]nuwanda[/eluser]
Use jQuery's load function to call your controller method.

Echo the data from the controller function and it will be returned to your view.




Theme © iAndrew 2016 - Forum software by © MyBB