diff --git a/Assignment/HW3-JS_ToDo_List/HW3 - JavaScript & jQuery.docx b/Assignment/HW3-JS_ToDo_List/HW3 - JavaScript & jQuery.docx
index a2980e4..3c1cf3d 100644
Binary files a/Assignment/HW3-JS_ToDo_List/HW3 - JavaScript & jQuery.docx and b/Assignment/HW3-JS_ToDo_List/HW3 - JavaScript & jQuery.docx differ
diff --git a/Assignment/HW3-JS_ToDo_List/_css/style.css b/Assignment/HW3-JS_ToDo_List/_css/style.css
index 78f00f7..d5ae517 100644
--- a/Assignment/HW3-JS_ToDo_List/_css/style.css
+++ b/Assignment/HW3-JS_ToDo_List/_css/style.css
@@ -1 +1,21 @@
/* Add CSS */
+#to-do{
+ color: #39CCCC; /* Playing with fun colors for the two list headers*/
+}
+
+#complete{
+ color: #85144b;
+}
+
+#in_progress{
+ color: #3D9970;
+}
+
+/* Adding nice fonts to the headers and instructive text*/
+h1, h2{
+ font-family: Rockwell, "Courier Bold", Courier, Georgia, Times, "Times New Roman", serif;
+}
+p{
+ font-family: Didot, "Didot LT STD", "Hoefler Text", Garamond, "Times New Roman", serif;
+}
+
diff --git a/Assignment/HW3-JS_ToDo_List/_js/main.js b/Assignment/HW3-JS_ToDo_List/_js/main.js
index 0f11441..9bcd676 100644
--- a/Assignment/HW3-JS_ToDo_List/_js/main.js
+++ b/Assignment/HW3-JS_ToDo_List/_js/main.js
@@ -1,13 +1,37 @@
$(document).ready(
$("#new-item").on('click', function() {
// once the document loads, create new item with this function
+ var user_input = $('#todo-item-input').val();
+ $('#list_todo').prepend("
" + user_input + "
");
})
);
+//$("#new-list").on('click', function() {
+ // once the document loads, create new item with this function
+ //$('.ul_list').append($('',{
+ //text: $('#input-new-list').val()
+ //}));
+//});
+
+
$("#list_todo").on('click', "button", function() {
// move from list_todo container to list_completed container
+ ($(this).html("Add To Complete List"));
+ var workingItem = $(this).parent();
+ $("#working_todo").prepend(workingItem).css("color", "#B10DC9"); //changing the color of a completed item
+});
+
+
+$("#working_todo").on('click', "button", function() {
+ // move from list_todo container to list_completed container
+ ($(this).html("Add To In Progress List"));
+ var completedItem = $(this).parent();
+ $("#list_completed").prepend(completedItem).css("color", "#0074D9"); //changing the color of a completed item
});
$("#list_completed").on('click', "button", function() {
// move back from list_completed container to list_todo container
+ ($(this).html("Add To In Progress List"));
+ var incompleteItem = $(this).parent();
+ $("#working_todo").prepend(incompleteItem);
});
diff --git a/Assignment/HW3-JS_ToDo_List/index.html b/Assignment/HW3-JS_ToDo_List/index.html
index 2ed5417..3e6df3c 100644
--- a/Assignment/HW3-JS_ToDo_List/index.html
+++ b/Assignment/HW3-JS_ToDo_List/index.html
@@ -21,18 +21,30 @@
Homework4 Javascript and jQuery
+
+
+
+
Sasha's Super To-Do List!
+
To use this site, type a to-do into the box below and hit 'click me' to move it into your to-do list. Once complete, hit "move me!" to move it into the completed list. Moved it too soon? Hit 'Add To To-Do List!' to put it back in the to-do list.
Pikachu can be seen napping in a bright sunlight. It has two red dots on its cheeks. By practicing HTML and CSS, Pikachu can lean confusion. Pikachu likes to steal computer chargers from Koala Boy because he's a Labrador.
Pikachu can be seen napping in a bright sunlight. It has two red dots on its cheeks. By practicing HTML and CSS, Pikachu can lean confusion. Pikachu likes to steal computer chargers from Koala Boy because he's a Labrador.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Assignment/Homework_2 - CSS_ResponsiveDesign/area.html b/Assignment/Homework_2 - CSS_ResponsiveDesign/area.html
new file mode 100644
index 0000000..8c05588
--- /dev/null
+++ b/Assignment/Homework_2 - CSS_ResponsiveDesign/area.html
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+ THIS IS AN AREA. WHAT'S AN AREA? :/
+
+
+
+
+