Skip to content

Category: Questions

How to add a transition to a Read more code

I am pretty new to CSS & javascript. For the last 3 hours I’ve been trying to add a transition to this code. It is a ‘Read more’ function. I hope that not only someone can finally help me with adding the transition to it, but I could learn something about CSS and javascript 🙂 I tried add…

Boolean Currying Javascript

I am trying to write a boolean currying function in javascript. I want isPresent function should return true if the passed arguments present is the given string else it should return false. Answer A generic solution is to have the “accumulator” value passed in differently. The first call you do to…

How to check if time passed (timer)

I have code: In the code I’m checking current time in milliseconds and in the form I write time in ms and sum current time with time in form and for example I want to add to current time 6000 ms and before this 6000 ms pass I want to pass for example to website information “ON” and after tha…

Vue 3 Append Component to the DOM: Best Practice

I would like to dynamically create a component in my Vue 3 app that I have in an SFC, and append it to the DOM. I am using <script setup> style components, which is yet another wrinkle. This seems unnecessarily hard. Here’s more or less what I want to do: Fetch some data. Got that. Make an instanc…