HTML preprocessors can make writing HTML more powerful or convenient. For instance, Markdown is designed to be easier to write and read for text documents and you could write a loop in Pug.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. So you don't have access to higher-up elements like the <html>
tag. If you want to add classes there that can affect the whole document, this is the place to do it.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. If you need things in the <head>
of the document, put that code here.
The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https.
CSS preprocessors help make authoring CSS easier. All of them offer things like variables and mixins to provide convenient abstractions.
It's a common practice to apply CSS to a page that styles elements such that they are consistent across all browsers. We offer two of the most popular choices: normalize.css and a reset. Or, choose Neither and nothing will be applied.
To get the best cross-browser support, it is a common practice to apply vendor prefixes to CSS properties and values that require them to work. For instance -webkit-
or -moz-
.
We offer two popular choices: Autoprefixer (which processes your CSS server-side) and -prefix-free (which applies prefixes via a script, client-side).
Any URLs added here will be added as <link>
s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.
You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.
You can also link to another Pen here (use the .css
URL Extension) and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, use the appropriate URL Extension and we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
JavaScript preprocessors can help make authoring JavaScript easier and more convenient.
Babel includes JSX processing.
Any URL's added here will be added as <script>
s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
Search for and use JavaScript packages from npm here. By selecting a package, an import
statement will be added to the top of the JavaScript editor for this package.
Using packages here is powered by esm.sh, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ESM usage.
All packages are different, so refer to their docs for how they work.
If you're using React / ReactDOM, make sure to turn on Babel for the JSX processing.
If active, Pens will autosave every 30 seconds after being saved once.
If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.
If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.
Visit your global Editor Settings.
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Superlative Sandwiches</title>
<link rel="stylesheet" href="main.css"/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
</head>
<body>
<div class="header">
<nav class="navbar">
<h1>Welcome to Geoff's Superlative Sandwiches</h1>
<ul>
<li><a href="https://www.seamless.com/menu/geoffs-superlative-sandwiches-163-benefit-st-providence/283007?utm_source=google&utm_medium=organic&utm_campaign=place-action-link">401 South Main Street, Providence, RI</a></li></br>
<li><a href="http://providenceonline.com/stories/geoffs-super-sized-new-space,26307"> WE DELIVER!</a></li>
<li><a href="https://www.indeed.com/cmp/Geoff%27s-Superlative-Sandwiches">CAREERS</a></li>
</nav>
</div>
<h2 class="memorize">Here's Help For Geoff's Sandwich Makers in Memorizing 90 Sandwiches On The Menu </h2>
<div class="container">
<div id="getMenu">
<section class="meat">
<img class="Geoffs" src="http://providenceonline.com/uploads/original/1519154196_c09d.jpg" alt="Geoff's Sandwich Shop" width="500" height="350">
<ul class="menu">
<h2>Hide or Show Menu by Double Clicking the Button To Test Your Memory</h2>
<input type="button" value="Click" class="menuShowHide" onclick="showMenu();">
<h3>Then enter input the recipe and submit for each Superlatively Made Sandwich!</h3>
<h3>Remember to pay close attention to the placment of commas and characters to match menu.</h3>
<h2 class="category">MEAT</h2>
<!--Aristocrat Sandwich name1_meat aristocrat-->
<div id="name1">
<li>1. Aristocrat</li>
<form onSubmit="guessAristocratSandwich();" >
<input type="text" id="arisRecipe" autocomplete="off" size="40" maxlength="100" ><br>
<br>
<input type="submit" value="Submit"
>
</form>
</div>
<p class="answer">corned beef, cole slaw, Havarti <span class="price">8.99</span></p>
<!--end of Aristocrat-->
<hr>
<!--Bonnie & Clyde name2_meat bonnieClyde-->
<div id="name2">
<li>2. Bonnie & Clyde</li>
<!--Clyde Sandwich_meat name 2-->
<form onSubmit="return guessClydeSandwich();">
<input type="text" id="clydeRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">roast beef, cream cheese, ketchup & onions<span class="price">8.99</span></p>
<!--end of Bonnie and Clyde-->
<hr>
<!--Doonesbury Sandwich name3_meat doonesbury -->
<div id="name3">
<li>3. Doonesbury</li>
<form onSubmit="return guessDoonesburySandwich();">
<input type="text" id="doonesburyRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">hot pastrami, melted cheddar cheese <span class="price">8.99</span></p>
<!--end of Doonesbury Sandwich-->
<hr>
<!--E-Z Wider Sandwich name4_meat ezwider-->
<div id="name4">
<li class='hot'>4. E-Z Wider</li>
<form onSubmit="return guessEzWiderSandwich();">
<input type="text" id="ezWiderRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">hot roast beef, cream cheese, tiger sauce, lettuce & onion <span class="price">8.99</span></p>
<!--E-Z Wider Ends-->
<hr>
<!--French Connection Starts name5_meat ezwider-->
<div id="name5">
<li>5. French Connection</li>
<form onSubmit="return guessFrenchConSandwich();">
<input type="text" id="frenchConRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">hot ham, tomato, onion, pepperoncini, Provolone cheese <span class="price">8.99</span></p>
<!--French Connection Ends-->
<hr>
<!--The Geoff Sandwich begins name6_meat-->
<div id="name6">
<li class='hot'>6. The Geoff</li>
<form onSubmit="return guessTheGeoff();">
<input type="text" id="theGeoffRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">hot pastrami, melted Swiss cheese<span class="price">8.99</span></p>
<!--The Geoff ends-->
<hr>
<!--The Golden Arch begins name7_meat-->
<div id="name7">
<li class='hot'>7. The Golden Arch</li>
<form onSubmit="return guessGoldenArch();">
<input type="text" id="theGoldenArchRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">hot roast beef, American cheese, ketchup, French's mustard, chopped onion on a bun<span class="price">8.99</span></p>
<!--The Golden Arch-->
<hr>
<!--The Judy Garland Sandwich begins name8-->
<div id="name8">
<li>8. Judy Garland</li>
<form onSubmit="return guessJudyGarland();">
<input type="text" id="judyGarlandRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">roast beef and cole slaw<span class="price">8.99</span></p>
<!--Judy Garland ends-->
<hr>
<!--Knockwurst Special Sandwich begins name9-->
<div id="name9">
<li>9. Knockwurst Special</li>
<form onSubmit="return guessKnockwurst();">
<input type="text" id="knockwurstRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">hot knockwurst, sauerkraut, Swiss cheese <span class="price">8.99</span></p>
<!--Knockwort ends-->
<hr>
<div id="name10">
<!--Sleepy Ho Sandwich begins name10-->
<li>10. Sleepy Ho</li>
<form onSubmit="return guessSleepyHo();">
<input type="text" id="sleepyHoRecipe" autocomplete="off" size="40" maxlength="100" ><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">large roast beef, onions, barbecue sauce, cheddar<span class="price">8.99</span></p>
<!--Sleepy Ho ends-->
<hr>
<!--The Kiss Sandwich name11-->
<div id="name11">
<li>11. The Kiss</li>
<form onSubmit="return guessTheKiss();">
<input type="text" id="theKissRecipe" autocomplete="off" size="40" maxlength="100" ><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">roast beef, American cheese, Russian dressing, Frank's hot sauce <span class="price">8.99</span></p>
<!--The Kiss Sandwich ends-->
<hr>
<!--Groucho begins name12-->
<div id="name12">
<li>12. Groucho</li>
<form onSubmit="return guessGroucho();">
<input type="text" id="grouchoRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">hot corned beef, melted Cheddar cheese, Shedd's sauce, lettuce and tomato<span class="price">8.99</span></p>
<!-- Groucho ends-->
<hr>
<!--Margaret Trudeau begins name13-->
<div id="name13">
<li>13. Margaret Trudeau</li>
<form onSubmit="return guessMargaretTrudeau();">
<input type="text" id="margaretTrudeauRecipe" autocomplete="off" size="40" maxlength="100" ><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">Canadian bacon, mushrooms, Swiss cheese <span class="price">8.99</span></p>
<!--Margaret Trudeau ends-->
<hr>
<!--Mickey Hickey Sandwich begins name14-->
<div id="name14">
<li>14. Mickey Hickey</li>
<form onSubmit="return guessMickeyHickey();">
<input type="text" id="mickeyHickeyRecipe" autocomplete="off" size="40" maxlength="100" ><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">hot pastrami, cole slaw, melted Swiss cheese <span class="price">8.99</span></p>
<!--Mickey Hickey ends-->
<hr>
<!--David Cicilline Sandwich begins name15-->
<div id="name15">
<li class='hot'>15. David Cicilline</li>
<form onSubmit="return guessDavidCicilline();">
<input type="text" id="davidCicillineRecipe" autocomplete="off" size="40" maxlength="100" ><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">Genoa salami, Provolone cheese, lettuce, tomato, onion, pepperoncini, oil & vinegar<span class="price">9.29</span></p>
<!--David Cicilline ends-->
<hr>
<!--Nancy Rothman Sandwich begins name16-->
<div id="name16">
<li>16. Nancy Rothman</li>
<form onSubmit="return guessNancyRothman();">
<input type="text" id="nancyRothmanRecipe" autocomplete="off" size="40" maxlength="100" ><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">Genoa salami, Swiss cheese, pepperoncini, tomato, Russian dressing<span class="price">8.99</span></p>
<!--Nancy Rothman ends-->
<hr>
<!--Reuben Sandwich begins name17-->
<div id="name17">
<li class="hot">17. Reuben</li>
<form onSubmit="return guessReuben();">
<input type="text" id="reubenRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">hot corned beef, sauerkraut, melted Swiss cheese, Russian dressing<span class="price">9.99</span></p>
<!--Reuben ends-->
<hr>
<!--Rich Lupo name18-->
<li>18. Rich Lupo</li>
<div id="name18">
<form onSubmit="return guessRichLupo();">
<input type="text" id="richLupoRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">roast beef, cream cheese, cole slaw, tomato, pepperoncini, onion, tiger sauce, Frank's sauce<span class="price">9.99</span></p>
<!--Rich Lupo ends-->
<hr>
<!--Godzilla Sandwich begins name19-->
<div id="name19">
<li>19. Godzilla</li>
<form onSubmit="return guessGodzilla();">
<input type="text" id="godzillaRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">large corned beef, muenster, spinach, mushrooms, onions, tomatoes, Dragon's breath<span class="price">9.99</span></p>
<!--Godzilla ends-->
<hr>
<!--Buddy Sandwich begins name20-->
<div id="name20">
<li>20. Buddy</li>
<form onSubmit="return guessBuddy();">
<input type="text" id="buddyRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">Lot's of ham, Provolone, lettuce, tomato & Italian dressing<span class="price">8.99</span></p>
<!--Buddy ends-->
<hr>
<!--Susan Farmer begins name21-->
<div id="name21">
<li class="hot">21. Susan Farmer</li>
<form onSubmit="return guessSusanFarmer();">
<input type="text" id="susanFarmerRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">cold roast beef, double melted Swiss cheese, Russian dressing<span class="price">8.99</span></p>
<!--Susan Farmer ends-->
<hr>
<!--Patrick Lynch begins name22-->
<div id="name22">
<li>22. Patrick Lynch</li>
<form onSubmit="return guessPatrickLynch();">
<input type="text" id="patrickLynchRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">ham, American cheese, lettuce, tomato, mayo on a buttered roll<span class="price">8.99</span></p>
<!--Patrick Lynch ends-->
<hr>
<!--Will Rogers name23-->
<div id="name23">
<li>23. Will Rogers</li>
<form onSubmit="return guessWillRogers();">
<input type="text" id="willRogersRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">hot kosher salami, melted Muenster cheese<span class="price">8.99</span></p>
<!--Will Rogers ends-->
<hr>
<!--Paul & Al name24-->
<div id="name24">
<li>24. Paul & Al</li>
<form onSubmit="return guessPaulAl();">
<input type="text" id="paulAlRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">hot pepperoni, spinach, American, Provolone cheese, Italian dressing<span class="price">8.99</span></p>
<!--Paul & Al ends-->
<hr>
<!--Alan Shawn Feinstein name25-->
<div id="name25">
<li class="hot">25.Alan Shawn Feinstein</li>
<form onSubmit="return guessAlanShawn();">
<input type="text" id="alanShawnRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">hot roast beef, Swiss & mushrooms with horseradish<span class="price">8.99</span></p>
<!--Alan Shawn ends-->
<hr>
<!--Rachel name26-->
<div id="name26">
<li>26. Rachel</li>
<form onSubmit="return guessRachel();">
<input type="text" id="rachelRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">hot pastrami, sauerkraut, Swiss, Russian dressing<span class="price">9.99</span></p>
<!--Rachel ends-->
<hr>
<!--Kevorkian Sandwich name27-->
<div id="name27">
<li class="hot">27.Kevorkian</li>
<form onSubmit="return guessKevorkian();">
<input type="text" id="kevorkianRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">hot pastrami, bacon, Cheddar cheese, Frank's hot sauce (optional dragon's breath)<span class="price">9.99</span></p>
<!--Kevorkian ends-->
<hr>
<!--Frigid Bitch Sandwich name28-->
<div id="name28">
<li>28. Frigid Bitch</li>
<form onSubmit="return guessFrigidBitch();">
<input type="text" id="frigidBitchRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">turkey, spinach, chive cream cheese, cucumbers, Tiger sauce, sprouts<span class="price">9.99</span></p>
<!--Frigid ends-->
<hr>
<!--Rick "The Mailman" Sandwich name29-->
<div id="name29">
<li>29. Rick "The Mailman"</li>
<form onSubmit="return guessRickMailman();">
<input type="text" id="rickMailmanRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">bacon, lettuce, tomato<span class="price">8.99</span></p>
<!--Rick "The Mailman" ends-->
<hr>
</ul>
</section>
<!--end of "meat" section for single meat sandwich-->
<hr>
<section class="doubleCombos">
<ul class="menu">
<h2 class="category">Double Combos</h2>
<!--The Wyatt Sandwich begins name30-->
<div id="name30">
<li class="hot">30. The Wyatt</li>
<form onSubmit="return guessWyattSandwich();">
<input type="text" id="wyattRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">hot corned beef, pastrami, cheese, dijon mustard, tiger sauce<span class="price">8.99</span></p>
<!--The Wyatt Ends-->
<hr>
<!--Bob Colona name31-->
<div id="name31">
<li>31. Bob Colona</li>
<form onSubmit="return guessBobColona();">
<input type="text" id="bobColonaRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">peanut butter, bacon & cheddar cheese<span class="price">7.99</span></p>
<!--Bob Colona ends-->
<hr>
<!--Bob Tombelson name32-->
<div id="name32">
<li class="hot">32. Bob Tombelson</li>
<form onSubmit="return guessBobTombelson();">
<input type="text" id="bobTombelsonRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">hot turkey, ham, melted Swiss cheese, Shed's sauce, cranberry sauce<span class="price">8.99</span></p>
<!--Bob Colona ends-->
<hr>
<!--Ford Rainey Sandwich begins here name33-->
<div id="name33">
<li>33. Ford Rainey</li>
<form onSubmit="return guessFordRainey();">
<input type="text" id="fordRaineyRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">hot pastrami, turkey, sauerkraut, Muenster cheese<span class="price">8.99</span></p>
<!--Ford Rainey ends-->
<hr>
<!--Patrick Kennedy name34-->
<div id="name34">
<li class="hot">34. Patrick Kenedy</li>
<form onSubmit="return guessPatrickKennedy();">
<input type="text" id="patrickKennedyRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">cold turkey, hot pastrami, melted cheese of your choice<span class="price">8.29</span></p>
<!--Patrick Kennedy ends-->
<hr>
<!--Flying Fish begins here name35-->
<div id="name35">
<li>35. Flying Fish</li>
<form onSubmit="return guessFlyingFish();">
<input type="text" id="flyingFishRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">turkey, tuna<span class="price">8.99</span></p>
<!--Flying Fish ends-->
<hr>
<!--Juicy Brucie Lucie begins here name36-->
<div id="name36">
<li>36. Juicy Brucie Lucie</li>
<form onSubmit="return guessBrucieLucie();">
<input type="text" id="brucieLucieRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">hot turkey, chopped liver, melted Muenster cheese<span class="price">8.99</span></p>
<!--Juicy Brucie Lucie ends-->
<hr>
<!--Mad Dog begins here name37-->
<div id="name37">
<li>37. Mad Dog</li>
<form onSubmit="return guessMadDog();">
<input type="text" id="madDogRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">knockwurst, pastrami, Swiss cheese, dijon mustard, & tiger sauce<span class="price">9.99</span></p>
<!--Mad Dog ends-->
<hr>
<!--Mike Schwartz begins here name38-->
<div id="name38">
<li>38. Mike Schwartz</li>
<form onSubmit="return guessMikeSchwartz();">
<input type="text" id="mikeSchwartzRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">tuna fish, hot pastrami, Muenster cheese, Russian Dressing, lettuce and tomato<span class="price">9.99</span></p>
<!--Mike Schwartz ends-->
<hr>
<!--The Gagger begins here name39-->
<div id="name39">
<li>39. The Gagger</li>
<form onSubmit="return guessGagger();">
<input type="text" id="gaggerRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">hot roast beef, pastrami, onions, American cheese, Gulden's & celery salt on a roll<span class="price">8.99</span></p>
<!--The Gagger ends-->
<hr>
<!--Wacko begins here name40-->
<div id="name40">
<li>40. Wacko</li>
<form onSubmit="return guessWacko();">
<input type="text" id="wackoRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">roast beef, turkey & cheese<span class="price">8.99</span></p>
<!--Wacko ends-->
<hr>
<!--Keogh's Kaos begins here name41-->
<div id="name41">
<li>41. Keogh's Kaos</li>
<form onSubmit="return guessKeoghsKaos();">
<input type="text" id="keoghsKaosRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">turkey, corned beef, bacon, spinach & Swiss, all hot<span class="price">9.99</span></p>
<!--Keogh's ends-->
<hr>
<!--Doug White begins here name42-->
<div id="name42">
<li class="hot">42. Doug White</li>
<form onSubmit="return guessDougWhite();">
<input type="text" id="dougWhiteRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">genoa salami, imported ham, provolone, lettuce, onion, green olives, Russian dressing, tiger sauce<span class="price">9.99</span></p>
<!--Doug White ends-->
<hr>
<!--The Godfather begins here name43-->
<div id="name43">
<li>43. The Godfather</li>
<form onSubmit="return guessTheGodfather();">
<input type="text" id="theGodfatherRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">hot pepperoni, genoa salomi, Provolone cheese, pepperoncini oil<span class="price">10.99</span></p>
<!--The Godfather ends-->
<hr>
<!--Ruby Plushner begins here name44-->
<div id="name44">
<li>44. Ruby Plusher</li>
<form onSubmit="return guessRubyPlushner();">
<input type="text" id="rubyPlushnerRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">corned beef, chopped liver<span class="price">8.99</span></p>
<!--Ruby Plushner ends-->
<hr>
<!--Don Carcieri begins here name45-->
<div id="name45">
<li>45. Don Carcieri</li>
<form onSubmit="return guessDonCarcieri();">
<input type="text" id="donCarcieriRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">hot roast beef, hot pastrami, melted Swiss<span class="price">8.99</span></p>
<!--Don Carcieri ends-->
<hr>
<!--R.J. Heim Sandwich begins here name46-->
<div id="name46">
<li class="hot">46. R.J. Heim</li>
<form onSubmit="return guessHeim();">
<input type="text" id="heimRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">hot turkey, hot Canadian bacon, melted Swiss, cranberry sauce and dijon mustard<span class="price">9.99</span></p>
<!--R.J.Heim ends here-->
<hr>
<!--Jorge Elorza name47-->
<div id="name47">
<li>47. Jorge Elorza</li>
<form onSubmit="return guessJorgeElorza();">
<input type="text" id="jorgeElorzaRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">hot turkey and roast beef, melted provolone cheese, yellow mustard, topped with hot finger peppers<span class="price">12.99</span></p>
<!--Jorge Elorza ends here-->
<hr>
</ul>
</section>
<!--end of Double Combos-->
<hr>
<section class="tripleCombos">
<ul class="menu">
<h2 class="category">Triple Combos</h2>
<!--Julianna Lynn Triple Combo starts here name48-->
<div id="name48">
<li>48. Julianna Lynn</li>
<form onSubmit="return guessJuliannaLynn();">
<input type="text" id="juliannaLynnRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">genoa salami, ham, roast beef, cheese<span class="price">10.99</span></p>
<!--Julianna Lynn ends here-->
<hr>
<!--Barzini Brothers Triple Combo starts here name49-->
<div id="name49">
<li>49. Barzini Brothers</li>
<form onSubmit="return guessBarziniBrothers();">
<input type="text" id="barziniBrothersRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">roast beef, ham, turkey, cheese<span class="price">10.99</span></p>
<!--Barzini Brothers ends here-->
<hr>
<!--Ray DeFusco Triple Combo starts here name50-->
<div id="name50">
<li>50. Ray DeFusco</li>
<form onSubmit="return guessRayDeFusco();">
<input type="text" id="rayDeFuscoRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">genoa salami, pepperoni, imported ham, Provolone<span class="price">10.99</span></p>
<!--Ray DeFusco ends here-->
<hr>
<!--Romeo DeMarco name51-->
<div id="name51">
<li>51. Romeo DeMarco</li>
<form onSubmit="return guessRomeoDeMarco();">
<input type="text" id="romeoDeMarcoRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">roast beef, kosher salami, pastrami & cheese<span class="price">10.99</span></p>
<!--Rome DeMarco ends here-->
<hr>
<!--Jaime Brockett name52-->
<div id="name52">
<li>52. Jaime Brockett</li>
<form onSubmit="return guessJaimeBrockett();">
<input type="text" id="jaimeBrockettRecipe" autocomplete="off" size="40" maxlength="150"><br>
<br><!--extra long on the maxLength-->
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">hot roast beef, kosher salami, onion, ham with melted Swiss & Cheddar cheese, mayo, Tiger Sauce, Russian dressing, tomato<span class="price">8.99</span></p>
<!--Jaime Brockett ends here-->
<hr>
</ul>
</section>
<!--Meat, Meat Double Combo, Meat Triple Combo Ends Here-->
<hr>
<!--Meatless begins here-->
<section class="meatless">
<ul class="menu">
<h2 class="category">Meatless</h2>
<!--Monster Lisa starts here name53-->
<div id="name53">
<li>53. Monster Lisa</li>
<form onSubmit="return guessMonsterLisa();">
<input type="text" id="monsterLisaRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
<p class="answer">large melted Muenster cheese, mushroooms, sprouts, dill weed <span class="price">7.99</span></p>
<!--Monster Lisa ends here-->
<hr>
</div>
<!--Phillipe & Jorge starts here name54-->
<div id="name54">
<li class="hot">54. Phillipe & Jorge</li>
<form onSubmit="return guessPhillipe_Jorge();">
<input type="text" id="phillipe_JorgeRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">hot spinach, 3 slices melted cheese with mushroom, tomato, onion, pepperoncini, sprouts <span class="price">8.99</span></p>
<!--Phillipe & Jorge ends here-->
<hr>
<!--Prima Donna starts here name55-->
<div id="name55">
<li>55. Prima Donna</li>
<form onSubmit="return guessPrimaDonna();">
<input type="text" id="primaDonnaRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">egg salad, chive cream cheese & sprouts <span class="price">8.99</span></p>
<!--Prima Donna ends here-->
<hr>
<!--Rickman's Reuben starts here name56-->
<div id="name56">
<li>56. Rickman's Reuben</li>
<form onSubmit="return guessRickmansReuben();">
<input type="text" id="rickmansReubenRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">large melted Swiss cheese, spinach, carrots & sauerkraut <span class="price">7.99</span></p>
<!--Rickman's Reuben ends here-->
<hr>
<!--Dead Gead starts here name57-->
<div id="name57">
<li class="hot">57. Dead Head</li>
<form onSubmit="return guessDeadHead();">
<input type="text" id="deadHeadRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">cold Provolone cheese, spinach, carrots, tomato, onion, sprouts, oil & vinegar <span class="price">8.99</span></p>
<!--Dead Head ends here-->
<hr>
<!--Havarti 5-0 starts here name58-->
<div id="name58">
<li>58. Havarti 5-0</li>
<form onSubmit="return guessHavartiFiveO();">
<input type="text" id="havartiFiveORecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">five slices of Havarti cheese with lettuce, onion, cranberry sauce & tiger sauce<span class="price">8.99</span></p>
<!--Havarti 5-0 ends here-->
<hr>
<!--Barbara Meagher starts here name59-->
<div id="name59">
<li>59. Barbara Meagher</li>
<form onSubmit="return guessBarbaraMeagher();">
<input type="text" id="barbaraMeagherRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">large melted Cheddar cheese with hot tomatoes, mushrooms, onions & carrots with sweet basil<span class="price">8.99</span></p>
<!--Havarti 5-0 ends here-->
<hr>
<!--Saarin's choice starts here name60-->
<div id="name60">
<li>60. Saarin's choice</li>
<form onSubmit="return guessSaarinsChoice();">
<input type="text" id="saarinsChoiceRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">melted Muenster, Cheddar and Swiss with sprouts, carrots, lettuce & onion<span class="price">7.99</span></p>
<!--Saarin's choice ends here-->
<hr>
<!--Slim Jim O'Neill starts here name61-->
<div id="name61">
<li>61. "Slim" Jim O'Neill</li>
<form onSubmit="return guessSlimJimO_Neill();">
<input type="text" id="slimJimO_NeillRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">lettuce, tomato, onion, alfalfa sprouts with horseradish<span class="price">7.99</span></p>
<!--Slim Jim O'Neill ends here-->
<hr>
<!--Barbara Morse starts here name62-->
<div id="name62">
<li>62. Barbara Morse</li>
<form onSubmit="return guessBarbaraMorse();">
<input type="text" id="barbaraMorseRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">hummus, spinach, cucumbers, tomato, onions, vinegar<span class="price">8.99</span></p>
<!--Barbara Morse ends here-->
<hr>
</ul>
<!--Meatless ends here-->
</section>
<hr>
<!--Fish begins here-->
<section class="fish">
<ul class="menu">
<h2 class="category">Fish</h2>
<!--Lee Ann starts here name63-->
<div id="name63">
<li>63. Lee Ann</li>
<form onSubmit="return guessLeeAnn();">
<input type="text" id="leeAnnRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">tuna, chive cream cheese<span class="price">7.99</span></p>
<!--Lee Ann ends here-->
<hr>
<!--Antoinette Downing starts here name64-->
<div id="name64">
<li>64. Antoinette Downing</li>
<form onSubmit="return guessAntoinetteDowning();">
<input type="text" id="antoinetteDowningRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">salmon, melted Muenster cheese, lettuce, onion, Russian dressing<span class="price">8.99</span></p>
<!--Antoinette Downing ends here-->
<hr>
<!--Bermuda Triangle starts here name65-->
<div id="name65">
<li>65. Bermuda Triangle</li>
<form onSubmit="return guessBermudaTriangle();">
<input type="text" id="bermudaTriangleRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">hot sardines, onion, lemon juice, melted Swiss cheese<span class="price">8.99</span></p>
<!--Bermuda Triangle ends here-->
<hr>
<!--The Diamond starts here name 66-->
<div id="name66">
<li class="hot">66. The Diamond</li>
<form onSubmit="return guessTheDiamond();">
<input type="text" id="theDiamondRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">tuna, double melted Swiss cheese, mushrooms & spinach<span class="price">8.99</span></p>
<!--The Diamond ends here-->
<hr>
<!--Jaws starts here name 67-->
<div id="name67">
<li>67. Jaws</li>
<form onSubmit="return guessJaws();">
<input type="text" id="jawsRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">tuna salad, melted cheese of your choice<span class="price">8.99</span></p>
<!--Jaws ends here-->
<hr>
<!--Tame-Me-Amy starts here name 68-->
<div id="name68">
<li>68. Tame-Me-Amy</li>
<form onSubmit="return guessTameMeAmy();">
<input type="text" id="tameMeAmyRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">tuna, melted Cheddar cheese, bacon<span class="price">8.99</span></p>
<!--Tame-Me-Amy ends here-->
<hr>
<!--Tuna Berry starts here name 69-->
<div id="name69">
<li class="hot">69. Tuna Berry</li>
<form onSubmit="return guessTunaBerry();">
<input type="text" id="tunaBerryRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">tuna, melted Swiss cheese, Shedd's sauce & cranberry<span class="price">8.99</span></p>
<!--Tuna Berry ends here-->
<hr>
<!--Salmon Dave starts here name 70-->
<div id="name70">
<li class="hot">70. Salmon Dave</li>
<form onSubmit="return guessSalmonDave();">
<input type="text" id="salmonDaveRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">cold salmon with melted Havarti, hot spinach and onion with ranch dressing<span class="price">10.99</span></p>
<!--Salmon Dave ends here-->
<hr>
<!--Judge Gibney starts here name 71-->
<div id="name71">
<li>71. Judge Gibney</li>
<form onSubmit="return guessJudgeGibney();">
<input type="text" id="judgeGibneyRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">tuna, lettuce, sprouts with Russian dressing<span class="price">7.99</span></p>
<!--Judge Gibney ends here-->
<hr>
<!--The Professor starts here name 72-->
<div id="name72">
<li>72. The Professor</li>
<form onSubmit="return guessTheProfessor();">
<input type="text" id="theProfessorRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">tuna salad, sprouts, lettuce, mayo, onion & celery salt <span class="price">7.99</span></p>
<!--The Professor ends here-->
<hr>
<!--Steve Cascione starts here name 73-->
<div id="name73">
<li>73. Steve Cascione</li>
<form onSubmit="return guessSteveCascione();">
<input type="text" id="steveCascioneRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">Italian tuna, spicy mustard, pepperoncini, lettuce, onion, tomato, olives, and balsamic <span class="price">8.99</span></p>
<!--Steve Cascione ends here-->
<hr>
</ul>
</section>
<!--Fish ends here-->
<hr>
<!--Fowl begins here-->
<section class="fowl">
<ul class="menu">
<h2 class="category">Fowl</h2>
<!--Chicken George starts here name 74-->
<div id="name74">
<li class="hot">74. Chicken George</li>
<form onSubmit="return guessChickenGeorge();">
<input type="text" id="chickenGeorgeRecipe" autocomplete="off" size="40" maxlength="120"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">chicken salad, bacon, melted Swiss cheese, hot spinach, tomato, onion, Shedd's sauce & Russian dressing <span class="price">9.99</span></p>
<!--Chicken George ends here-->
<hr>
<!--Celina starts here name 75-->
<div id="name75">
<li>75. Celina</li>
<form onSubmit="return guessCelina();">
<input type="text" id="celinaRecipe" autocomplete="off" size="40" maxlength="100"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">hot turkey, cole slaw, melted Havarti, Picante sauce<span class="price">8.99</span></p>
<!--Celina ends here-->
<hr>
<!--Jen and Berry starts here name 76-->
<div id="name76">
<li class="hot">76. Jen and Berry</li>
<form onSubmit="return guessJenAndBerry();">
<input type="text" id="jenAndBerryRecipe" autocomplete="off" size="40" maxlength="140"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">chicken salad, melted Muenster cheese, lettuce, onions, mustard, cranberry sauce & sweet basil<span class="price">8.99</span></p>
<!--Jen and Berry ends here-->
<hr>
<!--The Juggs starts here name 77-->
<div id="name77">
<li class="hot">77. The Juggs</li>
<form onSubmit="return guessTheJuggs();">
<input type="text" id="theJuggsRecipe" autocomplete="off" size="40" maxlength="140"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">hot turkey, bacon, Cheddar cheese, Shedd's sauce & cranberry<span class="price">9.99</span></p>
<!--The Juggs ends here-->
<hr>
<!--Juliette Low starts here name 78-->
<div id="name78">
<li >78. Juliette Low</li>
<form onSubmit="return guessJulietteLow();">
<input type="text" id="julietteLowRecipe" autocomplete="off" size="40" maxlength="140"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">hot turkey, melted American cheese & lettuce on a bun<span class="price">8.99</span></p>
<!--Juliette Low ends here-->
<hr>
<!--Marlene Dietrich starts here name 79-->
<div id="name79">
<li>79. Marlene Dietrich</li>
<form onSubmit="return guessMarleneDietrich();">
<input type="text" id="marleneDietrichRecipe" autocomplete="off" size="40" maxlength="140"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">hot turkey, sauerkraut, melted Swiss cheese<span class="price">8.99</span></p>
<!--Marlene Dietrich ends here-->
<hr>
<!--Rocky starts here name 80-->
<div id="name80">
<li>80. Rocky</li>
<form onSubmit="return guessRocky();">
<input type="text" id="rockyRecipe" autocomplete="off" size="40" maxlength="140"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">hot turkey, melted Muenster cheese, celery salt<span class="price">8.99</span></p>
<!--Rocky ends here-->
<hr>
<!--Big Nazo starts here name 81-->
<div id="name81">
<li>81. Big Nazo</li>
<form onSubmit="return guessBigNazo();">
<input type="text" id="bigNazoRecipe" autocomplete="off" size="40" maxlength="140"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">hot turkey, Provolone & spinach on cold tomatoes with hot sauce, garlic & oil<span class="price">8.99</span></p>
<!--Big Nazo ends here-->
<hr>
<!--Babs Delight starts here name 82-->
<div id="name82">
<li>82. Babs Delight</li>
<form onSubmit="return guessBabsDelight();">
<input type="text" id="babsDelightRecipe" autocomplete="off" size="40" maxlength="140"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">turkey, bacon, chive cream cheese, tiger sauce<span class="price">8.99</span></p>
<!--Babs Delight ends here-->
<hr
<!--Albuquerque Turkey starts here name 83-->
<div id="name83">
<li>83. Albuquerque Turkey</li>
<form onSubmit="return guessAlbuquerqueTurkey();">
<input type="text" id="albuquerqueTurkeyRecipe" autocomplete="off" size="40" maxlength="140"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">hot turkey, melted Muenster with chili & chive cream cheese<span class="price">9.99</span></p>
<!--Albuquerque Turkey ends here-->
<hr>
<!--Providence Monthly starts here name 84-->
<div id="name84">
<li class="hot">84. Providence Monthly</li>
<form onSubmit="return guessProvidenceMonthly();">
<input type="text" id="providenceMonthlyRecipe" autocomplete="off" size="40" maxlength="140"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">grilled chicken with melted Muenster on a grilled bun with lettuce, tomato, onion, avocado and Shedd's sauce<span class="price">11.99</span></p>
<!--Providence Monthly ends here-->
<hr>
<!--J. Savage starts here name 85-->
<div id="name85">
<li class="hot">85. J. Savage</li>
<form onSubmit="return guessJ_Savage();">
<input type="text" id="j_SavageRecipe" autocomplete="off" size="40" maxlength="140"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">Buffalo chicken, honey mustard, Swiss, blue cheese, avocado, lettuce and tomato (optional Dragon's breath)<span class="price">12.99</span></p>
<!--J. Savage ends here-->
<hr>
<!--Roger Williams starts here name 86-->
<div id="name86">
<li>86. Roger Williams</li>
<form onSubmit="return guessRogerWilliams();">
<input type="text" id="rogerWilliamsRecipe" autocomplete="off" size="40" maxlength="140"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">Turkey, stuffing, bacon, cranberry, sprouts, lettuce, onion, tomato, Tiger Sauce, Havarti<span class="price">12.99</span></p>
<!--Roger Williams ends here-->
<hr>
<!--Fowl ends here-->
</ul>
</section>
<hr>
<!--Egg Combos begins here-->
<section class="eggCombo">
<ul class="menu">
<h2 class="category">Egg Combos</h2>
<!--Embryonic Journey starts here name 87-->
<li>87. Embryonic Journey</li>
<div id="name87">
<form onSubmit="return guessEmbryonicJourney();">
<input type="text" id="embryonicJourneyRecipe" autocomplete="off" size="40" maxlength="140"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">egg salad, bacon, melted Cheddar<span class="price">8.99</span></p>
<!--Embryonic Journey ends here-->
<hr>
<!--Jayne's Addiction starts here name 88-->
<div id="name88">
<li>88. Jayne's Addiction</li>
<form onSubmit="return guessJaynesAddiction();">
<input type="text" id="jaynesAddictionRecipe" autocomplete="off" size="40" maxlength="140"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">sm. egg salad, garlic, mushrooms, spinach, cheddar<span class="price">8.99</span></p>
<!--Jayne's Addiction ends here-->
<hr>
<!--Dayna's Egg starts here name 89-->
<div id="name89">
<li>89. Dayna's Egg</li>
<form onSubmit="return guessDaynasEgg();">
<input type="text" id="daynasEggRecipe" autocomplete="off" size="40" maxlength="140"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">hot spinach, bacon, Cheddar, cold egg, cucumber, Shedd's sauce<span class="price">8.99</span></p>
<!--Dayna's Egg ends here-->
<hr>
<!--Egg Combo ends here-->
</ul>
</section>
<!--BFS begins here-->
<section class="bfs">
<ul class="menu">
<h2 class="category">Last but not least: BFS</h2>
<hr>
<!--BFS starts here name 90-->
<div id="name90">
<li>BFS</li>
<form onSubmit="return guessBFS();">
<input type="text" id="bFSRecipe" autocomplete="off" size="40" maxlength="140"><br>
<br>
<input type="submit" value="Submit" >
</form>
</div>
<p class="answer">turkey, ham, roast beef, corned beef, pastrami, 3 cheese toppers<span class="price">19.99</span></p>
<!--BFS ends here-->
<hr>
</ul>
</section>
<hr>
<h2>Congratulations on Finishing the Memorization Menu and Good Luck!</h2>
</div>
</div>
<div id='info'>
<!--<h2 class="contactName">Enter your name so we can stay in touch!</h2>-->
<!--<form onSubmit="sayHi();">
<input type="text" id="name">
<input type="submit" value="Name">
</form>-->
<!--form for ordering a sandwich in case site option not available
<form onSubmit="example();">
Sandwich: <input type="text" id="sandwichName"><br>
<input type="submit" value="Submit"></form>-->
</div>
<footer>
<div class="socialNav">
<ul class="social">
<li><a href="https://www.facebook.com/GeoffsSuperlativeSandwiches/"><img class="flogo" src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/Facebook_icon.svg/2000px-Facebook_icon.svg.png"/></li>
<li><a href="https://www.instagram.com/geoffs_superlative_sandwiches/"><img class="ilogo" src="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e7/Instagram_logo_2016.svg/1024px-Instagram_logo_2016.svg.png"/></li>
<li class="copyright">© Lori Labrie 2018<li>
</ul>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>
body {
background-color: beige;
margin: 0;
}
/* sticky header */
.header, .navbar, ul {
background-color: brown;
}
.navbar {
color: white;
position: fixed;
top: 0;
width: 100%;
}
.navbar, li {
display: inline-block;
font-family: sans-serif;
letter-spacing: .2em;
list-style: none;
text-align: center;
}
.navbar a {
color: white;
text-decoration: none;
}
.navbar, h1 {
background-color: red;
color: white;
font-size: 1.2em;
margin: 0;
text-align: center;
width: 100%;
}
.flex-container {
-webkit-flex-direction: row; /* Safari */
flex-direction: row;
}
/* end of header */
/* Menu section*/
#getMenu, .menu {
background-color: beige;
padding: 2em;
}
button, .menuShowHide {
background-color: red;
border-radius: 10px;
color: white;
text-align: center;
width: 60px;
}
input:link {
color: white;
}
input[type="text"]{
box-sizing: border-box;
background: #E9E9E9;
overflow: hidden;
tex-overflow: ellipsis;
white-space: no-wrap;
padding: 0.35em 0.75em;
border: none;
font-size: 1em;
text-decoration: none;
line-height: normal;
max-height: 3em;
}
input[type="submit"] {
box-sizing: border-box;
border-radius: 0px 2px 2px 0px;
background: #8B798c;
font-weight: 300;
text-transform: uppercase;
color: white;
padding: 0.35em .75em;
border: none;
font-size: 1em;
text-decoration: none;
cursor: pointer;
}
.category {
color: red;
}
.memorize {
background-color: black;
color: white;
margin-top: 10%;
text-align: center;
}
section, .meat, .doubleCombos, .tripleCombos, .meatless, .fish, .fowl, .eggCombo {
/*flex layout context*/
display: flex;
/*flow direction allowing items to wrap*/
flex-flow: row wrap;
/*defining how distribution of remaining space*/
justify-content: space-around;
}
.price {
color: red;
font-weight: 500;
padding: 10px;
}
.getMenu, li {
font-family: sans-serif;
font-weight: 600;
word-spacing: normal;
}
/*sandwich recipes hidden by name*/
.answer {
visibility:hidden;
}
.hot {
background-color: red;
color: white;
padding: 2px;
}
form, input {
border: 1px solid black;
display: inline-block;
margin: 1px;
width: 440px;
}
.contactName {
color: black;
margin-left: 10px;
}
form {
display: flex;
margin-left: 10px;
margin-bottom: 10px;
padding: 5px;
}
footer, .socialNav {
background-color: brown;
color: white;
padding: 2px;
}
.social {
display: flex;
}
.flogo, .ilogo {
width: 50px;
}
.copyright {
color: white;
font-weight:200;
padding: 20px;
}
@media (min-width:600px) {
.container {
font-size: 30px;
}
.header {
font-size: 20px;
}
.container, p, li, form {
font-size: 14px;
}
.Geoffs {
width: 100%;
height:100%
}
}
@media screen and (max-device-width: 480px),
only screen and (-webkit-min-device-pixel-ratio: 2) {
.container {
.container, p, li, form {
font-size: 12px;
}
.Geoffs {
width: 55%;
}
.memorize {
margin-top: 20%;
}
}
}
var document, window, $, alert, attempt, meatMenu;
window.scrollTo({
top: 0,
behavior: "smooth"
});
//constructor layout of Menu
meatMenu = {
aristocrat : "corned beef, cole slaw, havarti", //Meat menu begins here name1
bonnieClyde : "roast beef, cream cheese, ketchup & onions", //name2
doonesbury : "hot pastrami, melted cheddar cheese", //name3
ezwider: "hot roast beef, cream cheese, tiger sauce, lettuce & onion", //name4
frenchConnection : "hot ham, tomato, onion, pepperoncini, provolone cheese", //name5
geoffSandwich : "hot pastrami, melted swiss cheese", //name6
goldenArch : "hot roast beef, american cheese, ketchup, french's mustard, chopped onion on a bun", //name7
judyGarland : "roast beef and cole slaw", //name8
knockWurst : "hot knockwurst, sauerkraut, swiss cheese", //name9
sleepyHo : "large roast beef, onions, barbecue sauce, cheddar", //name10
theKiss : "roast beef, american cheese, russian dressing, frank's hot sauce", //name11
groucho : "hot corned beef, melted cheddar cheese, shedd's sauce, lettuce and tomato", //name12
margaretTrudeau : "canadian bacon, mushrooms, swiss cheese", //name13
mickeyHickey : "hot pastrami, cole slaw, melted swiss cheese", //name14
davidCicilline : "genoa salami, provolone cheese, lettuce, tomato, onion, pepperoncini, oil & vinegar", //name15
nancyRothman : "genoa salami, swiss cheese, pepperoncini, tomato, russian dressing", //name16
reuben : "hot corned beef, sauerkraut, melted swiss cheese, russian dressing", //name17
richLupo : "roast beef, cream cheese, cole slaw, tomato, pepperoncini, onion, tiger sauce, frank's sauce", //name18
godzilla : "large corned beef, muenster, spinach, mushrooms, onions, tomatoes, dragon's breath", //name19
buddy : "lot's of ham, provolone, lettuce, tomato & italian dressing", //name20
susanFarmer : "cold roast beef, double melted swiss cheese, russian dressing", //name21
patrickLynch : "ham, american cheese, lettuce, tomato, mayo on a buttered roll", //name22
willRogers : "hot kosher salami, melted muenster cheese", //name23
paul_Al : "hot pepperoni, spinach, american, provolone cheese, italian dressing", //name24
alanShawn : "hot roast beef, swiss & mushrooms with horseradish", //name25
rachel : "hot pastrami, sauerkraut, swiss, russian dressing", //name26
kevorkian : "hot pastrami, bacon, cheddar cheese, frank's hot sauce (optional dragon's breath)", //name27
frigidBitch : "turkey, spinach, chive cream cheese, cucumbers, tiger sauce, sprouts", //name28
rickMailman : "bacon, lettuce, tomato", //name29
wyatt : "hot corned beef, pastrami, cheese, dijon mustard, tiger sauce", //name30
bobColona : "peanut butter, bacon & cheddar cheese", //name31
bobTombelson : "hot turkey, ham, melted swiss cheese, shed's sauce, cranberry sauce", //name32
fordRainey : "hot pastrami, turkey, sauerkraut, muenster cheese", //name33
patrickKennedy : "cold turkey, hot pastrami, melted cheese of your choice", //name34
flyingFish : "turkey, tuna", //name35
brucieLucie : "hot turkey, chopped liver, melted muenster cheese", //name36
madDog : "knockwurst, pastrami, swiss cheese, dijon mustard, & tiger sauce", //name37
mikeSchwartz : "tuna fish, hot pastrami, muenster cheese, russian dressing, lettuce and tomato", //name38
gagger : "hot roast beef, pastrami, onions, american cheese, gulden's & celery salt on a roll", //name39
wacko : "roast beef, turkey & cheese", //name40
keoughsKaos : "turkey, corned beef, bacon, spinach & swiss, all hot", //name41
dougWhite : "genoa salami, imported ham, provolone, lettuce, onion, green olives, russian dressing, tiger sauce", //name42
theGodfather : "hot pepperoni, genoa salomi, provolone cheese, pepperoncini oil", //name 43
rubyPlushner : "corned beef, chopped liver", //name44
donCarcieri : "hot roast beef, hot pastrami, melted swiss", //name45
heim : "hot turkey, hot canadian bacon, melted swiss, cranberry sauce and dijon mustard", //name46
jorgeElorza : "hot turkey and roast beef, melted provolone cheese, yellow mustard, topped with hot finger peppers", //name47
juliannaLynn : "genoa salami, ham, roast beef, cheese", //name 48
barziniBrothers : "roast beef, ham, turkey, cheese", //name49
rayDeFusco : "genoa salami, pepperoni, imported ham, provolone", //name50
romeoDeMarco : "roast beef, kosher salami, pastrami & cheese", //name51
jaimeBrockett : "hot roast beef, kosher salami, onion, ham with melted swiss & cheddar cheese, mayo, tiger sauce, russian dressing, tomato", //name52
monsterLisa : "large melted muenster cheese, mushroooms, sprouts, dill weed", //Meatless begins here - name 53
phillipe_Jorge : "hot spinach, 3 slices melted cheese with mushroom, tomato, onion, pepperoncini, sprouts", //name54
primaDonna : "egg salad, chive cream cheese & sprouts", //name55
rickmansReuben : "large melted swiss cheese, spinach, carrots & sauerkraut", //name56
deadHead : "cold provolone cheese, spinach, carrots, tomato, onion, sprouts, oil & vinegar", //name57
havartiFiveO : "five slices of havarti cheese with lettuce, onion, cranberry sauce & tiger sauce", //name58
barbaraMeagher : "large melted cheddar cheese with hot tomatoes, mushrooms, onions & carrots with sweet basil", //name59
saarinsChoice : "melted muenster, cheddar and swiss with sprouts, carrots, lettuce & onion", //name59
slimJimO_Neill : "lettuce, tomato, onion, alfalfa sprouts with horseradish", //name61
barbaraMorse : "hummus, spinach, cucumbers, tomato, onions, vinegar", //name62
leeAnn : "tuna, chive cream cheese", //name63
antoinetteDowning : "salmon, melted muenster cheese, lettuce, onion, russian dressing", //name64
bermudaTriangle : "hot sardines, onion, lemon juice, melted swiss cheese", //name65
theDiamond : "tuna, double melted swiss cheese, mushrooms & spinach", //name66
jaws : "tuna salad, melted cheese of your choice", //name67
tameMeAmy : "tuna, melted cheddar cheese, bacon", //name68
tunaBerry : "tuna, melted swiss cheese, shedd's sauce & cranberry", //name69
salmonDave : "cold salmon with melted havarti, hot spinach and onion with ranch dressing", //name70
judgeGibney : "tuna, lettuce, sprouts with russian dressing", //name71
theProfessor : "tuna salad, sprouts, lettuce, mayo, onion & celery salt", //name72
steveCascione : "italian tuna, spicy mustard, pepperoncini, lettuce, onion, tomato, olives, and balsamic", //name73
chickenGeorge : "chicken salad, bacon, melted swiss cheese, hot spinach, tomato, onion, shedd's sauce & russian dressing", //name74
celina : "hot turkey, cole slaw, melted havarti, picante sauce", //name75
jenAndBerry : "chicken salad, melted muenster cheese, lettuce, onions, mustard, cranberry sauce & sweet basil", //name76
theJuggs : "hot turkey, bacon, cheddar cheese, shedd's sauce & cranberry", //name77
julietteLow : "hot turkey, melted american cheese & lettuce on a bun", //name78
marleneDietrich : "hot turkey, sauerkraut, melted swiss cheese", //name79
rocky : "hot turkey, melted muenster cheese, celery salt", //name80
bigNazo : "hot turkey, provolone & spinach on cold tomatoes with hot sauce, garlic & oil", //name81
babsDelight : "turkey, bacon, chive cream cheese, tiger sauce", //name82
albuquerqueTurkey : "hot turkey, melted muenster with chili & chive cream cheese", //name83
providenceMonthly : "grilled chicken with melted muenster on a grilled bun with lettuce, tomato, onion, avocado and shedd's sauce", //name84
j_Savage : "buffalo chicken, honey mustard, swiss, blue cheese, avocado, lettuce and tomato (optional dragon's breath)", //name85
rogerWilliams : "turkey, stuffing, bacon, cranberry, sprouts, lettuce, onion, tomato, tiger sauce, havarti", //name86
embryonicJourney : "egg salad, bacon, melted cheddar", //name87
jaynesAddiction : "sm. egg salad, garlic, mushrooms, spinach, cheddar", //name88
daynasEgg : "hot spinach, bacon, cheddar, cold egg, cucumber, shedd's sauce", //name89
bfs : "turkey, ham, roast beef, corned beef, pastrami, 3 cheese toppers" //bfs
};
//Aristocrat Sandwich name1
function guessAristocratSandwich() {
'use strict';
attempt = document.getElementById('arisRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.aristocrat) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name1").addEventListener("submit", function(event){
event.preventDefault()
})
/*window.addEventListener = { window: scrollTo({
top: 1900,
behavior: "smooth"
})
}; */
document.getElementById('arisRecipe').value = "";
}
//Clyde Sandwich name2
function guessClydeSandwich() {
'use strict';
attempt = document.getElementById('clydeRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.bonnieClyde) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name2").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
top: 2100,
behavior: "smooth"
})
};
document.getElementById('clydeRecipe').value = "";
}
//Doonesbury Sandwich name3
function guessDoonesburySandwich() {
'use strict';
attempt = document.getElementById('doonesburyRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.doonesbury) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name3").addEventListener("submit", function(event){
event.preventDefault()
})
/*window.addEventListener = { window: scrollTo({
top: 2300,
behavior: "smooth"
})
};*/
document.getElementById('doonesburyRecipe').value = "";
}
//-E-Z Wider Sandwich name4
function guessEzWiderSandwich() {
'use strict';
attempt = document.getElementById('ezWiderRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.ezwider) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name4").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
top: 2300,
behavior: "smooth"
})
};
document.getElementById('ezWiderRecipe').value = "";
}
//French Connection Starts name5
function guessFrenchConSandwich() {
'use strict';
attempt = document.getElementById('frenchConRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.frenchConnection) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name5").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
top: 2400,
behavior: "smooth"
})
};
document.getElementById('frenchConRecipe').value = "";
}
//The Geoff Sandwich name6
function guessTheGeoff() {
'use strict';
attempt = document.getElementById('theGeoffRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.geoffSandwich) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name6").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
top: 2300,
behavior: "smooth"
})
};
document.getElementById('theGeoffRecipe').value = "";
}
//The Golden Arch Sandwich begins name7_meat
function guessGoldenArch() {
'use strict';
attempt = document.getElementById('theGoldenArchRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.goldenArch) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name7").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
top: 2500,
behavior: "smooth"
})
};
document.getElementById('theGoldenArchRecipe').value = "";
}
//The Judy Garland Sandwich name8
function guessJudyGarland() {
'use strict';
attempt = document.getElementById('judyGarlandRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.judyGarland) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name8").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
top: 2800,
behavior: "smooth"
})
};
document.getElementById('judyGarlandRecipe').value = "";
}
//Knockwurst Special Sandwich name9
function guessKnockwurst() {
'use strict';
attempt = document.getElementById('knockwurstRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.knockWurst) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name9").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
top: 2800,
behavior: "smooth"
})
};
document.getElementById('knockwurstRecipe').value = "";
}
//Sleepy Ho Special Sandwich name10
function guessSleepyHo() {
'use strict';
attempt = document.getElementById('sleepyHoRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.sleepyHo) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name10").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
top: 2900,
behavior: "smooth"
})
};
document.getElementById('sleepyHoRecipe').value = "";
}
//The Kiss Sandwich name11
function guessTheKiss() {
'use strict';
attempt = document.getElementById('theKissRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.theKiss) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name11").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('theKissRecipe').value = "";
}
//The Groucho name12
function guessGroucho() {
'use strict';
attempt = document.getElementById('grouchoRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.groucho) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name12").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('grouchoRecipe').value = "";
}
//Margaret Trudeau name13
function guessMargaretTrudeau() {
'use strict';
attempt = document.getElementById('margaretTrudeauRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.margaretTrudeau) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name13").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('margaretTrudeauRecipe').value = "";
}
//Mickey Hickey Sandwich name14
function guessMickeyHickey() {
'use strict';
attempt = document.getElementById('mickeyHickeyRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.mickeyHickey) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name14").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('mickeyHickeyRecipe').value = "";
}
//David Cicilline Sandwich begins name15
function guessDavidCicilline() {
'use strict';
attempt = document.getElementById('davidCicillineRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.davidCicilline) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name15").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('davidCicillineRecipe').value = "";
}
//Nancy Rothman Sandwich begins name16
function guessNancyRothman() {
'use strict';
attempt = document.getElementById('nancyRothmanRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.nancyRothman) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name16").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('nancyRothmanRecipe').value = "";
}
//Reuben Sandwich begins name17
function guessReuben() {
'use strict';
attempt = document.getElementById('reubenRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.reuben) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name17").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('reubenRecipe').value = "";
}
//Rich Lupo name18 begins name18
function guessRichLupo() {
'use strict';
attempt = document.getElementById('richLupoRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.richLupo) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name18").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('richLupoRecipe').value = "";
}
//Godzilla name19
function guessGodzilla() {
'use strict';
attempt = document.getElementById('godzillaRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.godzilla) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name19").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('godzillaRecipe').value = "";
}
//Buddy Sandwich begins name20
function guessBuddy() {
'use strict';
attempt = document.getElementById('buddyRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.buddy) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name20").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('buddyRecipe').value = "";
}
//Susan Farmer begins name21
function guessSusanFarmer() {
'use strict';
attempt = document.getElementById('susanFarmerRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.susanFarmer) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name21").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('susanFarmerRecipe').value = "";
}
//Patrick Lynch begins name22
function guessPatrickLynch() {
'use strict';
attempt = document.getElementById('patrickLynchRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.patrickLynch) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name22").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('patrickLynchRecipe').value = "";
}
//Will Rogers name23
function guessWillRogers() {
'use strict';
attempt = document.getElementById('willRogersRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.willRogers) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name23").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('willRogersRecipe').value = "";
}
//Paul & Alname24
function guessPaulAl() {
'use strict';
attempt = document.getElementById('paulAlRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.paul_Al) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name24").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('paulAlRecipe').value = "";
}
//Alan Shawn Feinstein name25
function guessAlanShawn() {
'use strict';
attempt = document.getElementById('alanShawnRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.alanShawn) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name25").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('alanShawnRecipe').value = "";
}
//Rachel name26
function guessRachel() {
'use strict';
attempt = document.getElementById('rachelRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.rachel) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name26").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('rachelRecipe').value = "";
}
//Kevorkian Sandwich name27
function guessKevorkian() {
'use strict';
attempt = document.getElementById('kevorkianRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.kevorkian) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name27").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('kevorkianRecipe').value = "";
}
//Frigid Bitch Sandwich name28
function guessFrigidBitch() {
'use strict';
attempt = document.getElementById('frigidBitchRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.frigidBitch) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name28").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('frigidBitchRecipe').value = "";
}
//Rick "The Mailman" Sandwich name29
function guessRickMailman() {
'use strict';
attempt = document.getElementById('rickMailmanRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.rickMailman) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name29").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('rickMailmanRecipe').value = "";
}
//The Wyatt Sandwich begins name30
function guessWyattSandwich() {
'use strict';
attempt = document.getElementById('wyattRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.wyatt) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name30").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('wyattRecipe').value = "";
}
//Bob Colona name31
function guessBobColona() {
'use strict';
attempt = document.getElementById('bobColonaRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.bobColona) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name31").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('bobColonaRecipe').value = "";
}
//Bob Tombelson name32
function guessBobTombelson() {
'use strict';
attempt = document.getElementById('bobTombelsonRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.bobTombelson) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name32").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('bobTombelsonRecipe').value = "";
}
//Ford Rainey Sandwich begins here name33
function guessFordRainey() {
'use strict';
attempt = document.getElementById('fordRaineyRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.fordRainey) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name33").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('fordRaineyRecipe').value = "";
}
//Patrick Kennedy name34
function guessPatrickKennedy() {
'use strict';
attempt = document.getElementById('patrickKennedyRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.patrickKennedy) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name34").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('patrickKennedyRecipe').value = "";
}
//Flying Fish begins here name35
function guessFlyingFish() {
'use strict';
attempt = document.getElementById('flyingFishRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.flyingFish) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name35").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('flyingFishRecipe').value = "";
}
//Juicy Brucie Lucie begins here name36
function guessBrucieLucie() {
'use strict';
attempt = document.getElementById('brucieLucieRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.brucieLucie) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name36").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('brucieLucieRecipe').value = "";
}
//Mad Dog begins here name37
function guessMadDog() {
'use strict';
attempt = document.getElementById('madDogRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.madDog) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name37").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('madDogRecipe').value = "";
}
//Mike Schwartz begins here name38
function guessMikeSchwartz() {
'use strict';
attempt = document.getElementById('mikeSchwartzRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.mikeSchwartz) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name38").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('mikeSchwartzRecipe').value = "";
}
//The Gagger begins here name39
function guessGagger() {
'use strict';
attempt = document.getElementById('gaggerRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.gagger) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name39").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('gaggerRecipe').value = "";
}
//Wacko begins here name40
function guessWacko() {
'use strict';
attempt = document.getElementById('wackoRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.wacko) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name40").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('wackoRecipe').value = "";
}
//Keogh's Kaos begins here name41
function guessKeoghsKaos() {
'use strict';
attempt = document.getElementById('keoghsKaosRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.keoughsKaos) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name41").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('keoghsKaosRecipe').value = "";
}
//Doug White begins here name42
function guessDougWhite() {
'use strict';
attempt = document.getElementById('dougWhiteRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.dougWhite) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name42").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('dougWhiteRecipe').value = "";
}
//The Godfather begins here name43
function guessTheGodfather() {
'use strict';
attempt = document.getElementById('theGodfatherRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.theGodfather) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name43").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('theGodfatherRecipe').value = "";
}
//Ruby Plushner begins here name44
function guessRubyPlushner() {
'use strict';
attempt = document.getElementById('rubyPlushnerRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.rubyPlushner) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name44").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('rubyPlushnerRecipe').value = "";
}
//Don Carcieri begins here name45
function guessDonCarcieri() {
'use strict';
attempt = document.getElementById('donCarcieriRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.donCarcieri) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name45").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('donCarcieriRecipe').value = "";
}
//R.J. Heim Sandwich begins here name46
function guessHeim() {
'use strict';
attempt = document.getElementById('heimRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.heim) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name46").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('heimRecipe').value = "";
}
//Jorge Elorza name47
function guessJorgeElorza() {
'use strict';
attempt = document.getElementById('jorgeElorzaRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.jorgeElorza) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name47").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('jorgeElorzaRecipe').value = "";
}
//Julianna Lynn Triple Combo starts here name48
function guessJuliannaLynn() {
'use strict';
attempt = document.getElementById('juliannaLynnRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.juliannaLynn) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name48").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('juliannaLynnRecipe').value = "";
}
//Barzini Brothers Triple Combo starts here name49
function guessBarziniBrothers() {
'use strict';
attempt = document.getElementById('barziniBrothersRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.barziniBrothers) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name49").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('barziniBrothersRecipe').value = "";
}
//Ray DeFusco Triple Combo starts here name50
function guessRayDeFusco() {
'use strict';
attempt = document.getElementById('rayDeFuscoRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.rayDeFusco) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name50").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('rayDeFuscoRecipe').value = "";
}
//Romeo DeMarco name51
function guessRomeoDeMarco() {
'use strict';
attempt = document.getElementById('romeoDeMarcoRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.romeoDeMarco) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name51").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('romeoDeMarcoRecipe').value = "";
}
//Jaime Brockett name52
function guessJaimeBrockett() {
'use strict';
attempt = document.getElementById('jaimeBrockettRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.jaimeBrockett) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name52").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('jaimeBrockettRecipe').value = "";
}
//Meatless starts here
//Monster Lisa starts here name53
function guessMonsterLisa() {
'use strict';
attempt = document.getElementById('monsterLisaRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.monsterLisa) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name53").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('monsterLisaRecipe').value = "";
}
//Phillipe & Jorge starts here name54
function guessPhillipe_Jorge() {
'use strict';
attempt = document.getElementById('phillipe_JorgeRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.phillipe_Jorge) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name54").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('phillipe_JorgeRecipe').value = "";
}
//Prima Donna starts here name55
function guessPrimaDonna() {
'use strict';
attempt = document.getElementById('primaDonnaRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.primaDonna) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name55").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('primaDonnaRecipe').value = "";
}
// Rickman's Reuben name 56
function guessRickmansReuben() {
'use strict';
attempt = document.getElementById('rickmansReubenRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.rickmansReuben) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name56").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('rickmansReubenRecipe').value = "";
}
// Dead Head name 57
function guessDeadHead() {
'use strict';
attempt = document.getElementById('deadHeadRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.deadHead) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name57").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('deadHeadRecipe').value = "";
}
// Havarti 5-0 name 58
function guessHavartiFiveO() {
'use strict';
attempt = document.getElementById('havartiFiveORecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.havartiFiveO) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name58").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('havartiFiveORecipe').value = "";
}
// Barbara Meagher name 59
function guessBarbaraMeagher() {
'use strict';
attempt = document.getElementById('barbaraMeagherRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.barbaraMeagher) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name59").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('barbaraMeagherRecipe').value = "";
}
// Saarin's choice name 60
function guessSaarinsChoice() {
'use strict';
attempt = document.getElementById('saarinsChoiceRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.saarinsChoice) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name60").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('saarinsChoiceRecipe').value = "";
}
// Slim Jim O'Neill name 61
function guessSlimJimO_Neill() {
'use strict';
attempt = document.getElementById('slimJimO_NeillRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.slimJimO_Neill) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name61").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('slimJimO_NeillRecipe').value = "";
}
//Barbara Morse name 62
function guessBarbaraMorse() {
'use strict';
attempt = document.getElementById('barbaraMorseRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.barbaraMorse) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name62").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('barbaraMorseRecipe').value = "";
}
// Lee Ann name 63
function guessLeeAnn() {
'use strict';
attempt = document.getElementById('leeAnnRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.leeAnn) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name63").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('leeAnnRecipe').value = "";
}
// Antoinette Downing name 64
function guessAntoinetteDowning() {
'use strict';
attempt = document.getElementById('antoinetteDowningRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.antoinetteDowning) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name64").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('antoinetteDowningRecipe').value = "";
}
// Bermuda Triangle name 65
function guessBermudaTriangle() {
'use strict';
attempt = document.getElementById('bermudaTriangleRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.bermudaTriangle) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name65").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('bermudaTriangleRecipe').value = "";
}
// The Diamond name 66
function guessTheDiamond() {
'use strict';
attempt = document.getElementById('theDiamondRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.theDiamond) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name66").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('theDiamondRecipe').value = "";
}
// Jaws name 67
function guessJaws() {
'use strict';
attempt = document.getElementById('jawsRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.jaws) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name67").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('jawsRecipe').value = "";
}
// Tame-Me-Amy name 68
function guessTameMeAmy() {
'use strict';
attempt = document.getElementById('tameMeAmyRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.tameMeAmy) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name68").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('tameMeAmyRecipe').value = "";
}
// Tuna Berry name 69
function guessTunaBerry() {
'use strict';
attempt = document.getElementById('tunaBerryRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.tunaBerry) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name69").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('tunaBerryRecipe').value = "";
}
// Salmon Dave name 70
function guessSalmonDave() {
'use strict';
attempt = document.getElementById('salmonDaveRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.salmonDave) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name70").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('salmonDaveRecipe').value = "";
}
// Judge Gibney name 71
function guessJudgeGibney() {
'use strict';
attempt = document.getElementById('judgeGibneyRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.judgeGibney) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name71").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('judgeGibneyRecipe').value = "";
}
// The Professor name 72
function guessTheProfessor() {
'use strict';
attempt = document.getElementById('theProfessorRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.theProfessor) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name72").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('theProfessorRecipe').value = "";
}
// Steve Cascione name 73
function guessSteveCascione() {
'use strict';
attempt = document.getElementById('steveCascioneRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.steveCascione) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name73").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('steveCascioneRecipe').value = "";
}
// Chicken George name 74
function guessChickenGeorge() {
'use strict';
attempt = document.getElementById('chickenGeorgeRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.chickenGeorge) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name74").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('chickenGeorgeRecipe').value = "";
}
// Celina name 75
function guessCelina() {
'use strict';
attempt = document.getElementById('celinaRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.celina) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name75").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('celinaRecipe').value = "";
}
// Jen and Berry name 76
function guessJenAndBerry() {
'use strict';
attempt = document.getElementById('jenAndBerryRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.jenAndBerry) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name76").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('jenAndBerryRecipe').value = "";
}
// The Juggs name 77
function guessTheJuggs() {
'use strict';
attempt = document.getElementById('theJuggsRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.theJuggs) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name77").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('theJuggsRecipe').value = "";
}
// Juliette Low name 78
function guessJulietteLow() {
'use strict';
attempt = document.getElementById('julietteLowRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.julietteLow) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name78").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('julietteLowRecipe').value = "";
}
// Marlene Dietrich name 79
function guessMarleneDietrich() {
'use strict';
attempt = document.getElementById('marleneDietrichRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.marleneDietrich) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name79").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('marleneDietrichRecipe').value = "";
}
// Rocky name 80
function guessRocky() {
'use strict';
attempt = document.getElementById('rockyRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.rocky) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name80").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('rockyRecipe').value = "";
}
// Big Nazo name 81
function guessBigNazo() {
'use strict';
attempt = document.getElementById('bigNazoRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.bigNazo) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name81").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('bigNazoRecipe').value = "";
}
// Big Nazo name 82
function guessBabsDelight() {
'use strict';
attempt = document.getElementById('babsDelightRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.babsDelight) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name82").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('babsDelightRecipe').value = "";
}
// Albuquerque Turkey name 83
function guessAlbuquerqueTurkey() {
'use strict';
attempt = document.getElementById('albuquerqueTurkeyRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.albuquerqueTurkey) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name83").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('albuquerqueTurkeyRecipe').value = "";
}
// Providence Monthly name 84
function guessProvidenceMonthly() {
'use strict';
attempt = document.getElementById('providenceMonthlyRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.providenceMonthly) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name84").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('providenceMonthlyRecipe').value = "";
}
// J. Savage name 85
function guessJ_Savage() {
'use strict';
attempt = document.getElementById('j_SavageRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.j_Savage) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name85").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('j_SavageRecipe').value = "";
}
// Roger Williams name 86
function guessRogerWilliams() {
'use strict';
attempt = document.getElementById('rogerWilliamsRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.rogerWilliams) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name86").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('rogerWilliamsRecipe').value = "";
}
// Embryonic Journey name 87
function guessEmbryonicJourney() {
'use strict';
attempt = document.getElementById('embryonicJourneyRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.embryonicJourney) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name87").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('embryonicJourneyRecipe').value = "";
}
// JaynesAddiction name 88
function guessJaynesAddiction() {
'use strict';
attempt = document.getElementById('jaynesAddictionRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.jaynesAddiction) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name88").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('jaynesAddictionRecipe').value = "";
}
// Dayna's Egg name 89
function guessDaynasEgg() {
'use strict';
attempt = document.getElementById('daynasEggRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.daynasEgg) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name89").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('daynasEggRecipe').value = "";
}
// BFS starts here name 90
function guessBFS() {
'use strict';
attempt = document.getElementById('bFSRecipe').value.toLowerCase();
alert('You entered: ' + attempt);
if (attempt === meatMenu.bfs) {
alert("Great! Now try the next one.");
} else {
alert("Try again");
}
document.getElementById("name90").addEventListener("submit", function(event){
event.preventDefault()
})
window.addEventListener = { window: scrollTo({
bottom: 100,
behavior: "smooth"
})
};
document.getElementById('bFSRecipe').value = "";
}
/*function myFunction() {
'use strict';
document.querySelector("form").reset();
}*/
//show recipe of sandwich
function showMenu() {
'use strict';
$(".answer").css("visibility", "visible").toggle();
}
//before leaving say Hi
function sayHi() {
'use strict';
var userName = document.getElementById("name").value;
alert("Hello, " + userName + " " + "Good Luck!");
}
Also see: Tab Triggers