Taylor Swift Lyrics Quiz – 7 Questions

Which song do the lyrics belong to?

/7

Taylor Swift Lyrics Quiz -7 Questions

Name/Email is optional. You can play without submitting your info.

1 / 7

1. "He smiles it's like the radio"

2 / 7

2. "Could've loved you all my lifeIf you hadn't left me waiting in the cold"

3 / 7

3. "This night is sparkling, don't you let it go"

4 / 7

4. "You used to be a little kid with glasses in a twin-sized bed"

5 / 7

5. "Can we always be this close forever and ever?"

6 / 7

6. "People are people,And sometimes we change our minds"

7 / 7

7. "He can't keep his wild eyes on the road"

Your score is

0%

Leave a Comment

Your email address will not be published. Required fields are marked *

// Add this code to your theme's footer or in a custom plugin jQuery(document).ready(function($) { // Check if the drum pattern container exists if ($('.drum-pattern-container').length) { console.log('Found drum pattern container'); // Get raw pattern data var rawPatternData = $('.drum-pattern-container').attr('data-pattern-data'); console.log('Raw pattern data:', rawPatternData); // Try to manually display empty data to replace the problematic one $('.drum-pattern-container').attr('data-pattern-data', '[]'); // Force a basic pattern structure var basicPattern = [ { id: 0, beats: [ { id: 0, notes: [] }, { id: 1, notes: [] }, { id: 2, notes: [] }, { id: 3, notes: [] } ] } ]; // Try this alternate approach $('.drum-pattern-container').data('pattern-data', basicPattern); console.log('Fixed with empty pattern'); } else { console.log('No drum pattern container found'); } });