Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3497360
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T12:21:40+00:00 2026-05-18T12:21:40+00:00

I have a site that displays items, 12 items per page and I can

  • 0

I have a site that displays items, 12 items per page and I can paginate through the pages using jquery. On the same page I implemented a the tooltip feature with qTip.

Hovering over the items some information appear. That works until I use the paginator to go to the next page.

The pagination reloads the content. But it has the same structure as when I refresh the page.

Here’s my code:

$(document).ready(function() {
 $(".cornerize").corner("5px");
 $('a#verd').live('click', exSite);
 $("a.tp").live('click', thumpsUp);
 $("a#next").click(getProgramms);
 $("a#previous").click(getProgramms);
 $("a#page").each(function() {
  $(this).click(getProgramms);
 });

 $('a.ppname[rel]').each(function(){

    $(this).qtip( {
     content : {url :$(this).attr('rel')},
     position : {
      corner : {
       tooltip : 'leftBottom',
       target : 'rightBottom'
      }
     },
     style : {
      border : {
       width : 5,
       radius : 10
      },
      padding : 10,
      textAlign : 'center',
      tip : true, 
      name : 'cream' 
     }

    });
   });

 });

The html/dom does not change:

<a class="ppname" rel="link" href="#">...</a>

qTip takes from every a.ppname the rel value end loads the content.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T12:21:40+00:00Added an answer on May 18, 2026 at 12:21 pm

    This is happening because new elements are not automatically “qTiped” when they are loaded after page load. For regular events, you would have to use .live() instead of .bind().

    This has been solved before (judging from the comment): Problem with qTip – Tips not showing because elements load after the script.

    The correct way to do it is (from that answer):

    $('a.ppname[rel]').live('mouseover', function() {
        var target = $(this);
        if (target.data('qtip')) { return false; }
    
        target.qtip({
            overwrite: false, // Make sure another tooltip can't overwrite this one without it being explicitly destroyed
            show: {
                ready: true // Needed to make it show on first mouseover event
            },
            content : {url :$(this).attr('rel')},
            position : {
                corner : {
                    tooltip : 'leftBottom',
                    target : 'rightBottom'
                }
            },
            style : {
                border : {
                width : 5,
                radius : 10
            },
            padding : 10,
            textAlign : 'center',
            tip : true, 
            name : 'cream' 
        });
    
        target.trigger('mouseover');
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a site that displays other sites through an iframe on certain pages.
I have a site that displays multiple items extracted through PHP from a MySQL
I have a site that can be accessed both through http (http://mysite.com) and https
Another lame question So, I have a site that displays several students' requests to
i would like to have a block on my drupal site(latest version) that displays
I have a site that can allow me to access the mobile version of
We have a LIST of web pages that we use as News items on
I have a Django website that basically just displays a bunch of items from
I'm working on an online food delivery site using ASP.NET/C#, I have a page
I have a page in my site that has allows users to search for

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.