Jump to content

CoolUserName

Member
  • Posts

    9
  • Joined

  • Last visited

Awards

This user doesn't have any awards

CoolUserName's Achievements

  1. I found LTT when i started wanting to build my first pc and ever since they have been my favorite tech channel, and i look forward to daily videos.
  2. i dont need this so someone else can have it: WOBRD-7BAJD-GAMAM-7GHHO-36KJ4
  3. I am trying to make a button that will make a div get bigger and smaller. So if the div has a height of 100px than it will become 300px tall when the button is pressed, and then if it is 300px tall then when you press the button it will become 100px tall. this is my code currently: <html> <head> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script> function addWidth() { var box= document.getElementById("box"); var curr_width = parseInt(box.style.width); if(curr_width = 300){ $("#box").animate({height:"100px"}); } else if(curr_width = 100){ $("#box").animate({height:"300px"}); } } </script> </head> <body> <div id="box" style="background:#98bf21; height:300px; width:100px; margin:6px;"> <input type="button" value="Click Me" onclick="addWidth()" /> </div> </body></html>
  4. Okay, but besides that it should be fine right?
  5. computer specs: AMD FX-4300 g.skill 8 GB [4 GB X2] DDR3-1600 RAM msi r9 280 A Data 64gb ssd Seagate Barracuda 1 TB HDD gigabyte GA-970A-D3P Motherboard Corsair 750W power supply sorry i have not responded for a while and thanks for all the responses, i saw somewhere that i needed 1000w but i didn't belive it i also don't think i wiill OC
  6. I want to build a pc with 2 msi r9 280 and I want to know if a 750w psu is enough to power them.
×