i'd like to prevent PJAX clicking of a link unless an input box is keyed up.

here's the code:

$('a.pjax').pjax({container: '#main_content'}).live('click', function(event){ 
   if(keyed){ 
        console.log('yes, you typed');
   }
   else if(keyed==false){
        console.log('no, please type something');
        event.preventDefault();                                                 
   }
}); 

my problem is that despite the condition being determined correctly, PJAX still loads the page regardless of the preventDefault().

any thoughts on why this is not working?

thanks, tim

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

It seems the pjax function will always fire with the set-up you have in place.

However, the following should work:

$(document).on('click', 'a.pjax', function (event) {
    if (keyed) {
        console.log('yes, you typed');
        return $.pjax.click(event, '#main_content');
    }
    else {
        console.log('no, please type something');
        return false;
    }
});
link|improve this answer
hi dazbradbury, yes this works! thanks! – tim peterson Feb 21 at 6:48
feedback

Your Answer

 
or
required, but never shown

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