Skip to content

Set active class conditionally in React

I am new to React and of course, I am facing problems, the thing I am trying to accomplish is this. When any of these Components is opened I want to set an active class. I have already tried something but it is not working. So I want to add a background color to these divs className=’menu__iconsRight &#…

Return multiple queries using Apollo

I am using nextJS for my frontend with apollo and a graphql. And I fetching my queries using the getStaticProps() function. To increase modularity and maintainability I break my queries into multiple queries. I have a folder structure like: src/queries getPost.js getMenu.js getProduct.js index.js And their al…

javascript onclick form function

Helllo I have this form that take 3 different input for my app. I try to send that information to my database using API but first I want to print it out in the console to see if I got the value from the input but nothing happen, here is my Javascript code: Any ideas? Many thanks. Answer Issue Identified

Is it safe to make a POST request with JSON data using ajax?

I’m working on web application where I need to send some data using ajax with post method. So I have two choices to send data whether in JSON format or query prams. I’m confused which should I use? and is it safe to send data in JSON format? Answer As @lucasreta mentioned, if you use HTTPS, it doe…