Pirobox gallery experiencing technical difficulties

My website utilizes Pirobox extended v1.3, which can be found at this link:

Unfortunately, I am facing an issue where I am unable to close any of the images on my site. When I click off an image, it does not close properly.

You can visit my website and gallery through this link:

All relevant scripts are available on the website, but for convenience, I will provide them here:

In addition to Pirobox, I am also using the following jQuery scripts on my page:

http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.js

On each page, I have included the following script specifically for Pirobox:

<script type="text/javascript">
$(document).ready(function() {
    jQuery.easing.def = "easeInOutQuart";
    $.pirobox_ext({
        attribute: 'rel',
        piro_speed : 700,
        bg_alpha : .4,
        resize : true,
        zoom_mode : true,
        move_mode : 'mousemove',
        piro_scroll : false,
        share: true
        });

    $('.source_code').hide();
    $('.tabs li a').click(function(event){
        event.preventDefault();
        var tabs = $(this).attr('href');
        $(this).parent('li').siblings('li').children('a').removeClass('active');
        $(this).addClass('active');

        if(!$(tabs).is(':visible')){
            $(this).parent('li').parent('ul').parent('.section').find('.demo').fadeOut(0);
            $(tabs).fadeIn(300);
            }
        });
    });
</script>

Despite trying various solutions, I am still encountering issues with closing the images on the site after nearly a year since last accessing it. Your assistance in resolving this problem would be greatly appreciated.

Answer №1

Resolved the issue by reverting back to older jQuery libraries.

I initially had the most up-to-date version directly from the website, but it seems they have made changes since I last visited this site which resulted in the gallery malfunctioning.

Similar questions

If you have not found the answer to your question or you are interested in this topic, then look at other similar questions below or use the search

Adjust the standard size of the IMG tag using CSS

I have a simple image tag with an incorrect URL http://jsbin.com/monivava/1/edit <img src="http://placekitten!!!.com/g/200/200"> The issue is that the default size for this unsuccessful image is 18x20 (at least in Webkit), but I want it to be 0px ...

How to Monitor Clicks on a Flash Movie using jQuery

I've been working on a dynamic banner system that can support image banners and flash banners using object/embed. The site relies heavily on jQuery, especially for handling 'click' events. While tracking clicks on image banners is straightf ...

Alter the text color when hovering over a div element

Is there a way to adjust the text color within a div when hovering over it? Even though everything else changes, the text color remains the same. See below for an example: <div className="hover:bg-blue-100 hover:border-blue-500 hover:text-blue-60 ...

Flexbox allows you to easily manage the layout of your website

I am currently working on a CSS project and have encountered an issue. Whenever I apply the "display: flex" property to the .student element, the border around it mysteriously doubles. The reason for wanting to use the flex property is to align the text ve ...

How to Extract Minutes in Datatables Timestamps and Apply Custom Styling

Working with Datatables v1.10 Right now, my table is showing a date in the second column in the format 17-04-2019 14:34, which is how it's stored in the database. The filtering and searching functionality are all working as expected. The current HTM ...

Convert a fixed Jquery div to absolute positioning when it reaches the end of the page

I've implemented a Jquery code that adds a fixed class to a div when scrolling down. However, I now want to remove this fixed class when it reaches the bottom of the page and replace it with a new one that includes position:absolute; and margin-bottom ...

How can I delete a hyperlink on a number from my iPhone or iPad?

Is there a way to prevent certain sets of numbers from being linked, like phone numbers do on iPhones? <h2>Table</h2> <table class="table table-sm table-striped table-hover"> <caption class="sr-only">Search Results</caption> ...

Attempting to implement AJAX Autocomplete functionality for dynamically generated line items

In the development of my MVC project, I am facing a challenge where I need to dynamically add line items to an order/invoice. My goal is to implement autocomplete functionality for the service type field on each line. This means that as users start typing, ...

Fixing a Dropdown Problem in Codeigniter

I have encountered a problem with the Dropdown pop-up feature. Specifically, when I click on the "Add New" option in the Dropdown, the pop-up window fails to open. Here is the code for the Dropdown: echo form_dropdown('Birth_Certificate_Storage_id[& ...

Prevent duplicate submissions by disabling the ASP.NET Forms button after it has been clicked

How can I disable an ASP.NET button after it's clicked to prevent double-clicking, and then enable it again after the submission is complete? I need some assistance with this. ...

Integrating a real-time chat feature on a website

Considering adding a live chat support feature to my website specifically for new users seeking information about my services. I've been contemplating the most effective way to incorporate this solution without relying on third-party options. My idea ...

Explore various Lists with unique headings by applying filters or conducting searches

I am looking for a script that can filter and search various lists with the same class. The script should display the headings of the lists if there is at least one matching search name. If there are no matching search names, the heading of the list should ...

Failed to fetch user id from server using Ajax request

I am facing an issue with my form that includes a text input field and a button. After submitting the form, I extract the value from the user field and send an ajax request to ajax.php to retrieve the userID from the server. The server does return a value, ...

Toggling jQuery to show or hide content depending on the selector

I am looking to implement a jQuery-based animation and here is the code I have so far: >items=document.querySelectorAll("#customers td span"); [<span alt=​" 02,Counter,11,2013-04-06 14:​59:​16">​ 02​</span>​, <span>​11 ...

Populating a form field using another input

I am facing an issue with retrieving the price of a product in one field when the product name is selected in another field on a simple POS system. It works fine for the first product, but when I add another row for the next product, the price does not dis ...

Add a hovering effect to images by applying the absolute positioning property

On my React website, I am utilizing Tailwind CSS and I am attempting to showcase an image that has interactive elements. I want certain parts of the image to increase in size slightly when hovered over. My approach to achieving this was to save each part o ...

Looking to retrieve the file count of the currently downloading file in the Ajax response

I've developed a PHP function that allows users to download multiple files simultaneously. When the function is called, all of the files begin downloading at once. My challenge now is to display the file count on the user's screen. For instance: ...

Lag in jQuery Animate Property

Hello fellow developers! I am currently working on a promotional website where both the homepage and subpages are contained within the same index file. The transition between the content occurs when users click on the menu items. There are a total of 4 su ...

Differentiate between minimum and maximum values on ion-range sliders with discrete color options

I am currently working on customizing the theme of my ionic app, specifically trying to assign different colors to the min and max knobs on an ion-range component. At the moment, I am only able to apply a single HTML property called "color" to the selector ...

My custom Wordpress template experiences a hiccup with the jQuery slideshow, as it unexpectedly

Looking for help with a slideshow issue. Initially, it loads and transitions smoothly into one picture, but then stops working. I decided to use Chrome to troubleshoot the problem, and it informed me that it doesn't recognize the slideSwitch function ...