Strange bug affecting jQuery carousel in Internet Explorer

Encountering a strange jQuery problem here - everything seems to be working fine in Safari and Chrome, with just 4 columns being displayed. However, when I try it in IE(10), I only see 1 column and occasionally all 4 columns appear. Check it out here:

Answer №1

Regardless of the browser being used, only one column appears until all images are loaded and then the layout is rendered. Try refreshing the page by pressing ctrl+f5 to see this for yourself. Make sure that your layout loads first before the images are displayed.

.columns-4 .project-post {
float: left;
height: 250px;
margin: 12px;
width: 207px;
}

You can try removing position: absolute; and transform: translate; from those li elements as well.

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

What is the best way to customize the appearance of a toggle switch using useStyles in Material UI, rather than withStyles?

I need help with customizing the styling of an input form switch in Material UI. I want the track and button to turn red when the switch is on, similar to this example. I have tried using the withStyles method following examples on the Material UI website, ...

Navigating around web pages with Python and Selenium: How to interact with non-button elements through clicking

I am currently working with Python's selenium library and trying to interact with an element that is not of the button class. My browser/web driver setup involves Google Chrome. Below is my code snippet for reference: from selenium import webdriver ...

Troubleshooting Problem with Card Layout in Basic Bootstrap Template

While using a basic Bootstrap template from Mobirise for my website, I ran into an issue. I am trying to create 5 Bootstrap cards with buttons in a row, instead of the maximum of 4 that is currently available. You can view an example of these cards here: ...

Basic event listener function, functional in CodePen but not operating in Chrome web browser

I'm experiencing an issue where event listener functions are not working on my browser (Chrome), but they work fine on CodePen. I've been troubleshooting this for about 2 hours, and I'm seeking some insights. Can anyone help? CodePen Link: ...

What is the best way to reload the page when the app comes back to the foreground or is

I am currently facing an issue with my embedded VUE project in the app. I have created a function for updating programs which displays a progress bar in a pop-up window. The progress of this bar is based on information from the device. However, whenever ...

Looping through multiple AJAX calls

I have come across numerous questions on this topic, but I am still struggling to find a solution that will make my code function correctly. There is a specific function for calling AJAX that I am unable to modify due to security restrictions. Here is how ...

The function $.get does not function correctly when added to Button.ClientSideEvents.Click during the second click

string okumagecmisiStr = string.Format("function(s,e){{ $.get('/GetHazirRapor.ashx?RaporTanimi={0}',function(data){{location.href='{1}'}} ); }}", hrt.ID, hrt.WebRaporLink); ButtonWebRaporAc.ClientSideEvents.Click = okumagecmisiStr; T ...

Is there a way to prevent an iframe from being recorded in Chrome's browsing history?

I'm in the process of developing a Chrome extension that inserts an Angular application into the user's browser window to create an interactive sidebar. I've been successful in most of my goals by inserting an iframe through a content script ...

The utilization of the Open Sans font family results in certain alterations to the user

Currently, I am working on developing a button widget using react. I have utilized the 'Open Sans' font family for the HTML body in order to maintain consistent UI styling. However, some of the styling elements break down when the 'Open Sans ...

Pass a variable to PHP using AJAX

I am currently facing an issue with sending an input value to PHP via AJAX. I am attempting to generate a datatable based on user input. Below is the code snippet: <input class="form-control" id="id1" type="text" name="id1"> My JavaScript code: & ...

Locate the class ID and refine the search results by another class

I am currently working on a task that involves extracting the first <li> element's id where it has the class name my_class, and checking if the <span> with the class Time contains a ":" using jquery. Below is the sample HTML structure: & ...

Ways to integrate an HTML document into a Python tkinter GUI window

I'm looking to integrate my HTML webpage project into a Python Tkinter window using Tkinter HTML view. However, when attempting to do so, the end result in the Python Tkinter window looks like this: what I'm getting. Contrary to that, here is wha ...

"Refreshing the layout in Asp.Net MVC only involves re-rendering the RenderBody() content when navigating

Is there a way to reload just the views in the RenderBody() section of my layout without refreshing the entire page when clicking on the navigation menu? What is the most effective method to achieve this? ...

Eliminate repeated entries in a drop-down menu and display them with commas in between

I am working with a list that contains various language combinations: German to English German to Spanish German to Chinese German to French English to Spanish English to French English to Greek English to Portuguese Does anyone have suggestions on how ...

``I am experiencing issues with the Ajax Loader Gif not functioning properly in both IE

I am brand new to using ajax and attempting to display a loading gif while my page loads. Interestingly, it works perfectly in Firefox, but I cannot get it to show up in Chrome or IE. I have a feeling that I am missing something simple. The code I am using ...

How to display HTML string in iOS using Swift without using UIWebView

Is there a way to display the following HTML string in a UITableViewCell? How can I achieve this? <p>\r\n\t Samsung Full HD delivers stunning images, whether it's a premium-quality 2D picture or an incredible 3D experience. When ...

What is the reason for min-content not being compatible with auto-fill or auto-fit?

My confusion lies in the fact that this code snippet works: .grid { display: grid; grid-template-columns: repeat(4, min-content); } Whereas this one does not: .grid { display: grid; grid-template-columns: repeat(auto-fill, min-content); } I am ...

I am endeavoring to send out multiple data requests using a function, ensuring that the code execution occurs only once all the results have been received

After reading through a post on Stack Overflow about handling multiple AJAX calls in a loop (How to take an action when all ajax calls in each loop success?), I was able to come up with a solution. I decided to track the number of requests I needed to make ...

Leveraging ng-class with an Angular $scope attribute

My HTML structure includes: <div class="myDiv"> <div style="width:200px; height:200px;background-image:url('img/200x200/{{largeImg}}.png');" ng-class="{'magictime foolishIn': 1}"> <span> { ...

Checkbox and radio buttons in JQuery UI are stacked vertically on top of each other, rather than adjacent to each other

Here is the HTML code snippet: <div id="container"> <div id="signals-summary-parameters-radio"> <fieldset> <legend>Row Filter : </legend> <label for="signals-summary-radio-all">All</label> ...