From 89c3a22c47b256e6429a45c8a8253adc60598550 Mon Sep 17 00:00:00 2001 From: GJullian Flemister-King Date: Tue, 28 Feb 2017 16:47:34 -0700 Subject: [PATCH] done --- boxes.js | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/boxes.js b/boxes.js index 6b2b3db..7f5d4e4 100644 --- a/boxes.js +++ b/boxes.js @@ -1 +1,9 @@ -console.log("hello world"); +$(document).ready(function(){ + $('#secretBox').css("background-color","white"); + $('#secretBox').html("

Secret Box!

"); + $('#row1').children().attr('class', 'box boxType3'); + console.log($('#row4 div')[3].remove()); + $('.boxType1').css('background-color','white'); + $('#container div:not(#secretBox), #container div:not(.row)').css('width','2px'); + +});