search
  • Sign In
  • Sign Up
Password reset successful

Follow the proiects vou are interested in andi aet the latestnews about them taster

P粉238355860

P粉238355860

Follow
student

Follow 0
fans 0
integral 0
Is it possible to display a custom message in the beforeunload popup?

When using window.onbeforeunload (or $(window).on("beforeunload")), is it possible to display a custom message in that popup? Maybe a small trick that works on major browsers? By loo

2025-12-09 09:01:12Ask
JavaScript
What is the meaning of "cascading" in CSS?

What's the exact meaning of the term "Cascading" in Cascading Style Sheets (CSS)? I am getting different views, so I ask here. An example would help.

2025-11-29 07:01:42Ask
CSS
How to make jquery toggle width animation stop midway to close again?

Maybe this question is confusing, but let me give you an example, when I click the button that switches the width, the div continues to animate after pressing the button, which doesn't look amazing. What I want is for the div to stop halfway and go the other way, and not complete its existing animation when the button is pressed again. $(document).ready(function(){$('.menuToggle').click(function(){$(".menuContainer").anim

2024-03-19 23:49:40Ask
CSS3
iframe in Vue component opens in new tab (Safari only) ----- sometimes

I have a Vue component containing an IFrame. This component uses Vuex storage to make API calls to get the SSO's information that will be loaded in the IFrame. The first time the component is installed, it loads perfectly into the IFrame. However, when I switch screens and install the component again, SSO loads in a new tab. Then if I go to another screen it loads normally again. So the new tab issue only happens every once in a while when the component is installed. It's important to note that this behavior only occurs in Safari. Works as expected everywhere else

2024-03-19 19:35:49Ask
Vue.js
Is there a way to convert query data and mapping based on types in react-query v4?

I'm trying to convert query data from an API response. More specifically, I want to add two additional properties. That's why I'm using select configuration in useQuery hook like below: But in this case I don't get suggestion for extra two properties. That's why I added another model and used it with useQuery hook like below: But it gives error. I'm stuck on this problem. Edit on codesandbox

2024-01-08 23:03:24Ask
React
How to create a string equivalent to yyyyMMddHHmmssffff in PHP?

I'm trying to integrate with some VB code that generates a string using DateTime.Now.ToString("yyyyMMddHHmmssffff"). In PHP, the closest I can get is using date('YmdHis'). But this is missing the millisecond part. I have tried using microtime, such as date('YmdHis', microtime(true)), and then intercepting the string to solve this problem.

2023-07-31 12:10:17Ask
PHP