Skip to content

Tag: javascript

Accessing html elements from another page inside div

So I’m pretty new to html/javascript but i’m working on a project where i’m loading a external html page inside a div, that when loaded looks like so: and inside the ‘#document’ is the external html. This external html contains some titles that can be minimized and maximazed to h…

Stop react show more button scrolling to bottom of content

I have the follwing todo component. It’s purpose is to show 10 todos, and when More is clicked, show 10 more. The issue is when More is clicked, the extra todos are added however the windows scroll is still with the button, below the added todos. For example, if 10 todos gives window.scrollY of 1000, wh…

convert datetime to string using AJAX

Guys I would like to ask for your help I have here a Get Method using AJAX I successfully get the date from database this is the output 2020-08-13T00:00:00 however I wanted to convert the date format to this 2020-08-13 how can I convert the the datetime? below is my code /Get/ $(document).ready(function () { …

How to loop through complex JSON tree data?

Problem: I am given JSON tree data that looks something like below: The objective is to take the json object and its id and find matching object with id. let’s just assume its been parsed so it’s treated like an object. Basically, I don’t know how deeply each set of id and name is nested. So…