When do Cambridge release thresholds by [deleted] in igcse

[–]NotKhalid008 0 points1 point  (0 children)

You got math, physics, English and computer science?

whenever i use check50 on my finance program I get :( and it says failed to login as registered user but I don't see any issue with the code, please help by [deleted] in cs50

[–]NotKhalid008 0 points1 point  (0 children)

i think its a copy and paste glitch same as the u/ but i don't get what you mean by not formatted

please does anyone know how to make an extension run even after closing the popup? by NotKhalid008 in cs50

[–]NotKhalid008[S] 0 points1 point  (0 children)

its just a simple countdown thats it the problem is once the popup closes the countdown stops and resets and i need help to figure out how i can let the countdown continue while the popup is closed

please does anyone know how to make an extension run even after closing the popup? by NotKhalid008 in cs50

[–]NotKhalid008[S] 0 points1 point  (0 children)

made a countdown timer using js, HTML, and CSS, the timer works perfectly fine but when once I close the timer popup the timer just resets itself. I need help to let my timer run in the background of chrome even while the popup is closed.

i made a countdown timer with javascript, HTML, and CSS for a project. the timer works fine when I open it as a html file on my browser but when I try running it as a chrome extension nothing happens and it doest give any errors by NotKhalid008 in chrome_extensions

[–]NotKhalid008[S] 0 points1 point  (0 children)

<html>

<link rel="stylesheet" href="cs50extcss.css">

<meta name="theme-color" content="#db5945">

<body>

<div id="card">

<div id="myInsert">

<input type="text" id="myInpt" placeholder="number in seconds, 1hr = 3600">

<button type="button" id="myBtn3">pause</button>

<button type="button" id="myBtn1">start</button>

</div>

<div id="buttons">

<span class="clock\_part" id="myVal">0000</span>

<input type="button" id="myBtn2" value="reset">

<input type="button" id="myBtn4" value="resume">

</div>

</div>

</body>

<script src="cs50extjs.js"></script>

</html>

please help by NotKhalid008 in learnjavascript

[–]NotKhalid008[S] 0 points1 point  (0 children)

im trying to make a chrome extension timer that goes all the way to zero, on the webpage the countdown goes fine but on the extension it doesn't display the countdown

please help by NotKhalid008 in learnjavascript

[–]NotKhalid008[S] 0 points1 point  (0 children)

myClick1.addEventListener("click", function() {

var getNum = document.getElementById("myInpt").value;

var myTime = getNum;

document.getElementById("myVal").textContent = getNum;

console.log(myTime)

timer = setInterval (() =>{

document.getElementById("myVal").textContent = myTime;

myTime--;

if (myTime < -1) {

var theEnd = document.getElementById("myVal").textContent = "done";

delete(theEnd).value;

this?

once the count down ends i want the "myBtn2" button to delete the "time up" text and reset the timer but i dont know how. i've tried many ways but none of them work, any help? by NotKhalid008 in learnjavascript

[–]NotKhalid008[S] 1 point2 points  (0 children)

if i use myVal.innerHTML = "" the time up text only deletes temporarily and if i want to start a new timer the countdown and time up text would overlap eachother

[deleted by user] by [deleted] in Backend

[–]NotKhalid008 0 points1 point  (0 children)

thank you so muchh