Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Jquery browser compatibility

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #33944
    virtual
    Participant

    I’m having a bit of a problem with a Jquery tooltip I am trying to implement in certain browsers/platforms. The tooltips do not show at all in Firefox either PC or Mac and they do not show in Safari on PC. Any ideas?

    HEREis the page.

    This is a site I inherited so please excuse the terrible code and tables which were not of my doing, it’s a nightmare to work with.

    #85100
    noahgelman
    Participant

    You jQuery is targeting images with a ‘rel’ of ‘tooltip’

    $(document).ready(function() {

    //Select all anchor tag with rel set to tooltip
    $('a[rel=tooltip]').mouseover(function(e) {
    ///////////
    etc.

    But the images on the page you linked to don’t have them

    #85101
    virtual
    Participant

    It’s targeting anchor tags with a rel of tooltip which are down at the bottom of the page



    Dave Cordo
    Michael Shipitsin
    Eric Devroe
Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘JavaScript’ is closed to new topics and replies.