Jump to content
php.lv forumi
  • 0

click trigger


anonīms

Question

Tātad tiek ielādēts saturs ar ajax palīdzību un pēc tam ir nepieciešams palaist vienu linku, kas ir atradies jaunajā saturā. Tam tiek izmantots jQuery('.confirm_popup').click(); bet nav nekādas reakcijas.

Dīvaini ir tas, ka spiežot ar pelīti uz linka, tas tiek palaists, bet click triggers nenostrādā, bet outputs ir (tātad elements tiek atrasts).

 

Kur varētu būt problēma? 

jQuery('.confirm_popup').click();

 

  1.  
    <a class=​"colorbox-inline confirm_popup init-colorbox-inline-processed cboxElement" href=​"?width=540&height=500&inline=true#confirm-popup" style>Link to click2</a>
Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

Pieļauju, ka problēma slēpjas tajā, ka



jQuery('.confirm_popup').click( function( e ) { /** dari kautkoto **/ });

tiek izpildīts vēl pirms ajax satura ielādēšanas. Ja tā tad Tev var līdzēt divi varianti

1) bindu ieiliec ajax callbackā

2) izmanto 



Jquery('.ajax-container').on( 'click', '.confirm_popup', function( e ) { /** dari kautkoto **/ } );
Edited by draugz
Link to comment
Share on other sites

  • 0

Tur jau tā lieta, ka links netiek palaists uzreiz pēc ajax ielādes, bet tad, kad cilvēks nospiež vēl vienu submit pogu.

 

 

$('.calendar_clicked_page').css('opacity',parseFloat('0.4'));
                $('.hidden_link').val(query);
                $.get(url, function(data) {
                    $('.calendar_clicked_page').html(data);
                    $('.calendar_clicked_page').css('opacity',1);
                    Drupal.attachBehaviors(document); 
                });
                
                
                $.get('reservations_ajax_acceptPopup/?use_ajax=1&'+query, function(data) {
                    jQuery('.reservation_popup').html(data);
                    Drupal.attachBehaviors(document); 
                });
Edited by aaxc
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...