Welcome Guest, Not a member yet? Register   Sign In
Can't post with JQuery
#19

[eluser]Akinzekeel[/eluser]
I'm no expert at JavaScript but I think you cannot use a variable as key. I am referring to this code which you have posted here:

Code:
$(function(){
    $('input').bind('blur keyup', function()
    {
        $('#form_result').html(loading);
        var name    = $(this).attr('name'),
            value    = $(this).val();
        $.post("can't put links", { name: value }, function(data) {
            alert(data);
        });
    });
});

Try this instead (might require some POST variable adjustments in your PHP script):
Code:
$(function(){
    $('input').bind('blur keyup', function()
    {
        $('#form_result').html(loading);
        var n    = $(this).attr('name'),
            v    = $(this).val();
        $.post("can't put links", { name: n, value: v }, function(data) {
            alert(data);
        });
    });
});

By the way, I did not read this thread entirely so excuse if I didn't nail your problem right away. But I am still quite sure that you also need to send the CSRF token if you enable CSRF in your configuration.


Messages In This Thread
Can't post with JQuery - by El Forum - 04-24-2011, 01:37 PM
Can't post with JQuery - by El Forum - 04-25-2011, 09:37 PM
Can't post with JQuery - by El Forum - 04-26-2011, 03:47 AM
Can't post with JQuery - by El Forum - 04-26-2011, 06:47 AM
Can't post with JQuery - by El Forum - 04-26-2011, 07:43 AM
Can't post with JQuery - by El Forum - 04-26-2011, 07:48 AM
Can't post with JQuery - by El Forum - 04-27-2011, 08:25 AM
Can't post with JQuery - by El Forum - 04-27-2011, 02:00 PM
Can't post with JQuery - by El Forum - 04-28-2011, 12:04 AM
Can't post with JQuery - by El Forum - 04-28-2011, 03:31 AM
Can't post with JQuery - by El Forum - 04-28-2011, 06:30 AM
Can't post with JQuery - by El Forum - 04-28-2011, 06:45 AM
Can't post with JQuery - by El Forum - 04-28-2011, 06:59 AM
Can't post with JQuery - by El Forum - 04-28-2011, 07:39 AM
Can't post with JQuery - by El Forum - 04-28-2011, 12:56 PM
Can't post with JQuery - by El Forum - 04-30-2011, 05:07 AM
Can't post with JQuery - by El Forum - 04-30-2011, 12:37 PM
Can't post with JQuery - by El Forum - 04-30-2011, 01:37 PM
Can't post with JQuery - by El Forum - 04-30-2011, 03:04 PM
Can't post with JQuery - by El Forum - 05-01-2011, 03:25 AM
Can't post with JQuery - by El Forum - 05-01-2011, 04:25 AM
Can't post with JQuery - by El Forum - 05-01-2011, 04:36 AM



Theme © iAndrew 2016 - Forum software by © MyBB