Order ready-to-submit essays. No Plagiarism Guarantee!
Note: All our papers are written from scratch by human writers to ensure authenticity and originality.
This is a JavaScript Programming Project… DO NOT apply if you have no idea…
Check your essay before you submit. See exactly what your professor sees.
See your AI and plagiarism results before your instructor does.Get the exact same report your professor uses. Trusted by 50,000+ students worldwide.
I will attach the HTML, CSS and image files. You just need to add the function to the page.
what needs to be done;
-right and left arrow buttons are disabled until you start typing in the text box.
-once you start typing, right arrow becomes enabled.
-once you click right arrow, it counts the words in the text box by using “strings”
-once the counting is done, left arrow becomes enabled
-once you click the left arrow, it restarts the progress.
you can also use jQuery. You can change any code in any file if you think it is necessary.
if you use the word “JavaScript” in your message, you will get the first priority. Im so tired of scammers.
- js-project.zip
css/midterm.css
body { background: darkgray; } h1 { color: green; text-align: center; font-family: Baskerville, “Palatino Linotype”, Palatino, “Century Schoolbook L”, “Times New Roman”, “serif”; border: double white thick; } p { font-family: Cambria, “Hoefler Text”, “Liberation Serif”, Times, “Times New Roman”, “serif”; font-size: 24px; text-align: center; font-weight: 900; color: green; } textarea { height: 100%; min-height: 200px; width: 70%; border: 5px solid green; margin: 0 0 0 0; padding: 0 0 0 0; } #wordcounter { text-align: center; margin: auto; color: green; font-size: 24px; font-weight: 900; } input { height: 100px; width: 100px; } h6 { color: #000; text-align: center; }
imgs/arrow_button_metal_green_left_T.png
imgs/arrow_button_metal_green_right_T.png
index.html
IBRAHIM SELCUK HANOGLU
START TYPING or JUST COPY/PASTE YOUR TEXT 0 Characters
*this is a mobile friendly word counter designed by Ibrahim Selcuk Hanoglu
js/midterm.js
// JavaScript Document // word counter $(document).ready(function(){ $(“input”).click(function(){ var words = $.trim($(“textarea”).val()).split(” “); document.getElementById(“resultDiv”).innerHTML = words.length; }); });


