* fix: add test for input closing tag * fix: add condintion to final syntax test This wil test if there's any character after the input tag that isn't a white space * fix/tests+remove-not-needed-text
		
			
				
	
	
	
		
			2.4 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			2.4 KiB
		
	
	
	
	
	
	
	
id, title, challengeType, videoUrl
| id | title | challengeType | videoUrl | 
|---|---|---|---|
| bad87fee1348bd9aedf08830 | Add Placeholder Text to a Text Field | 0 | https://scrimba.com/p/pVMPUv/cKdJDhg | 
Description
input element before your user has inputted anything.
You can create placeholder text like so:
<input type="text" placeholder="this is placeholder text">Note: Remember that
input elements are self-closing.
Instructions
placeholder value of your text input to "cat photo URL".
Tests
tests:
  - text: Add a <code>placeholder</code> attribute to the existing text <code>input</code> element.
    testString: assert($("input[placeholder]").length > 0);
  - text: Set the value of your placeholder attribute to "cat photo URL".
    testString: assert($("input") && $("input").attr("placeholder") && $("input").attr("placeholder").match(/cat\s+photo\s+URL/gi));
  - text: The finished <code>input</code> element should not have a closing tag.
    testString: assert(!code.match(/<input.*\/?>.*<\/input>/gi));
  - text: The finished <code>input</code> element should have valid syntax.
    testString: assert($("input[type=text]").length > 0);
Challenge Seed
<h2>CatPhotoApp</h2>
<main>
  <p>Click here to view more <a href="#">cat photos</a>.</p>
  <a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
  <p>Things cats love:</p>
  <ul>
    <li>cat nip</li>
    <li>laser pointers</li>
    <li>lasagna</li>
  </ul>
  <p>Top 3 things cats hate:</p>
  <ol>
    <li>flea treatment</li>
    <li>thunder</li>
    <li>other cats</li>
  </ol>
  <input type="text">
</main>
Solution
<h2>CatPhotoApp</h2>
<main>
  <p>Click here to view more <a href="#">cat photos</a>.</p>
  
  <a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
  
  <p>Things cats love:</p>
  <ul>
    <li>cat nip</li>
    <li>laser pointers</li>
    <li>lasagna</li>
  </ul>
  <p>Top 3 things cats hate:</p>
  <ol>
    <li>flea treatment</li>
    <li>thunder</li>
    <li>other cats</li>
  </ol>
  <input type="text" placeholder="cat photo URL">
</main>