Vue window scrollto not working. And you are trying to apply it on an element.
Vue window scrollto not working. But There is nothing happens when I clicked on the button.
Vue window scrollto not working scrollTop() + window. First of, using @vue/cli, add the custom directive to src/main. log("scrolling"); }); Nov 16, 2017 · I've search for a solution and came up with this code methods: { handleScroll () { console. It didn't work in the first try. Until i tried the last solution. js with examples and explanations. scrollY = 0 window I'm finding that when the page is scrolled down, I'm unable to get window. body in app. I hope it help. Jan 31, 2013 · What ended up working for me was window. scrollToTop: function() { window. The button and the element are in two different components, but on the same. And you are trying to apply it on an element. execute_script("window. scrollTop($("#modalId"). scrollTo(0, localStorage. document. I have a continue button on my page where when a user clicks I call a validate function and if there are any errors on the page I show them on top and scroll to them with window. it can be; Wrong usage of app. scrollTo has had its operation change in 15. scrollTo() not working. scrollTo({top: 0, left: 0, behavior: 'smooth'}) in routes/index. scrollHeight, behavior I am trying to send user to the bottom of page by javascript I am trying this code window. onscroll = function() is indeed firing, but you are not getting the right scroll position (i. config. I needed a router which scroll to top without smooth behaviour, which goes to hashes with a smooth behaviour and respects the scrollMargin Property and scroll to savedPosition. onbeforeunload = function { window. You switched accounts on another tab or window. 3. Conclusion Aug 1, 2019 · If you are just trying to get window. var source = '' function showScrollInto(currentLocation, toLocation) { sourc Dec 30, 2020 · I see, I think window. Mar 16, 2023 · Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Advertising & Talent Reach devs & technologists worldwide about your product, service or employer brand May 25, 2023 · I have following function in pure JavaScript to scroll into an element and I would like to convert that code to Vue 3. log() no dice. Works in chrome. Jan 15, 2014 · Well, your first code snippet won't work because window doesn't have a scrollTop property that body has (that explains why your second code snippet it is supposed to work fine - you can do console. I am storing the vertical offset as an integer inside localStorage, but scrolling is not working and is kept at position 0. scrollTo or something equivalent. vue-scrollto uses window. scrollTo(0 , 0); and while trying to automatically scroll down to bottom of Jun 11, 2019 · The hidden element is toggled when the button is toggled on and off but the scroll is not working. addEventListener('scroll Dec 19, 2016 · document. Because the window is not scrolling as expected the element is not visible to be clicked (at least I believe that is the problem). log(window. scrollY); window. Add some more content and you'll see the content move. ready(function () { var foundDone = 0; var currOver = 0; for (va May 19, 2022 · In firefox the current page switches to the test page, but does not scroll up. An idea what i'm doing wrong? This code : $(window). jsのプロジェクトでは、window. I want it to just move the window to the top. querySelector('ol'). scroll() and window. Nov 9, 2021 · The default scroll behaviour of Nuxt is scrolling to Top with a smooth behaviour. scrollTop. querySelectorAll('. Now i want to set the viewport to my custom position with window. 1 For that i need to bind a function to the scroll event of the window, but i can't seem to get it to fire up: nothing happens. scrollTo would work as well for a more broad approach. scrollTop(). You signed out in another tab or window. For some reason, it is not firing at all. vue and/or layouts and multiple levels of ; You are lazyloading data, and full page height is not yet 'calculated' for example: scroll tries to go to top:5000 and page is only 2500 high because not all data is loaded Apr 18, 2015 · If your window. scrollTo(0, 0); } To make sure, does it work as expected when the browser history is set aside (i. 3, I could use a polyfill with scroll-behavior: smooth to scroll horizontally in a container with overflowx: hidden . Jan 3, 2021 · I have this scrollable div and inside i have an SVG with points that has id's given. client. – Nov 11, 2019 · I am new to Vue and am trying to get the simplest scroll event handler set up. scrollIntoView(), instead of window. scroll seem just to work for desktop browser. Removing the behavior: 'smooth' makes the test page at least start on top, but also removes the intended scroll effect. Viewed 38k times 18 So there are many reasons why a single script does not work for everyone. hash - specifically on iOS 7 on an iPhone 5C (likely happens on other iPhone models though). Need some advice on how to test a window scroll event using vue-test-utils Below is my js export default { created { window. Finally something that works Aug 13, 2017 · Learn how to scroll a div to the top using Vue. Most likely there's nothing after the div, so the page cannot scroll. 4 - Now you just need to call your function anywhere you want, passing a ref as param and see the scroll happening. I have a button in the footer component. I put an alert after and before to check to see if it actually was the line or not that was stopping it and only the first alert goes off, here's the code: Nov 17, 2018 · Ask questions, find answers and collaborate at work with Stack Overflow for Teams. Feb 23, 2023 · I found this code on nuxt/movies. I my case this wasn't something I want. I want to make the browser scroll to top page. Note that horizontal scrolling can be done in much the same manner. scrollY); }); well it does work, sort of It works for the initial page load, but not refreshes (cmd + shift + r) The console output is: window. 1 OS: macOS URL: https://ho. The element resultsScrollElement I’m querying like this: document. onscroll = function { show. But I'm executing the parent function from some other tab, then the this. Code Snippet. /App. So your example works fine on my system, but when i load the exact same code in my project it does not work. use(Router) doesn't work scrollToTop neither window. page-content'); Then to make a page scrollable, select the respective index and do: I have a navigation bar to scroll down to anchor elements. ts like Kaiser mentioned, But I had to modify it to work for Nuxt3. scrollTo(0, 200) and nothing will happen. I suppose HTMLElement. 4, I can't achieve that with or without a polyfill. For smooth vertical scrolling, the following function can be used. scrollTo = (x, y) => { document. I don't want to use any jquery for this solution. scroll. x but cannot get it to work. vue and another component, Home. js after window. scroll({ top: $(this). It even knows when the user interrupts, and doesn't force scrolling that would result in bad UX. any idea how i could solve that? Apr 26, 2020 · Learn how to scroll down when clicked using Vue. Tbh im not sure what is the relationship between animation parameter in windows settings and my browser. scrollTo(0, document. scrollTo(0, 0) to work on Mobile Safari when I also change location. requestAnimationFrame can be used to perform smooth scrolling in an exact amount of time. autosuggest__results"), and then I’m executing the scrollTo method. js { modules: [ 'vue-scrollto/nuxt', ] } Then, this template should do the trick Jan 24, 2022 · Now, immediately when navigating back the component for the page has not been loaded fully and the overall height of the page is not long enough. scrollTo(0,0) not working. x. It does work on Safari though. directive('scroll-to', VueScrollTo) app. scrollTo({ top: 0, behavior: "smooth"}); }; When this snippet of code is added to AppButton. Apr 26, 2021 · I'm working on an Angular 10 project. Jun 20, 2023 · It's not clear from your code if your div is actually scrollable. scrollTo(0,document. + works best if you use some VueJS framework. scrollTo(0,0) I use vue as front-end and google app script as backend, and when I deploy front-end application to google app script, window. I suspect it has something to do with React and the structure of the application. innerHeight >= document. Under 15. I changed it to a margin and it worked without having to listen to a different event or roundind the $(window). scrollTo(0,0) returning undefined is expected behaviour. productionTip = false new Vue({ el: '#app', mounted: function() { window. Changing the data-toggle from 'buttons' to 'button' makes the scroll work but does not visibly toggle the button so that is no good. scrollHeight);") command is not scrolling as I would expect. innerHTML = document. Mar 6, 2022 · Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Advertising & Talent Reach devs & technologists worldwide about your product, service or employer brand May 7, 2018 · You may take a look at Mozilla Docs as reference. getElementById(" Dec 20, 2020 · Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Advertising & Talent Reach devs & technologists worldwide about your product, service or employer brand Apr 17, 2023 · // AppButton. scroll(), window. bannerResize); }, method Jul 9, 2022 · Ask questions, find answers and collaborate at work with Stack Overflow for Teams. The scroll to savedPosition will only go to the bottom of the page before the component loads. 4 as well. Aug 13, 2020 · 1year after, I think the scrollToare evolved, your script are deprecated for me because now, we can pass an object into scrollTo like that : window. The way I could make it work was using HTMLDivElement. element. Jul 6, 2017 · You signed in with another tab or window. Share Improve this answer scrollTo is a property of window object. Read more about the scrollIntoView() function to learn more. scrollHe Jul 7, 2021 · You need to firstly yarn add vue-scrollto, then add the following configuration to nuxt. scroll(0,0); function. The problem is that if I visit any page from my current page using <nuxt-link>;, that page scroll position is s I know this is an old question, but I found a better solution with Vue. Why won't anything else work? Oct 1, 2018 · Running into this same issue. js 2. 1. noConflict() (this may be in a library that you have added or in your own code) or there is something overwriting $. mount('#app') component. main. I've searched how to do it on the internet and found that I can user a window. vue const scrollToTop = () => { window. scrollTo( 0, 0 ) doesn't work when the virtual keyboard is open. documentElement. To scroll the page to the modal, select html, body and scroll to the offset top of the modal $("html, body"). Dec 28, 2013 · I have looked at your page, and it appears that jQuery is not bound to the $ variable. But There is nothing happens when I clicked on the button. scrollTo(0,0) like other websites would. Try Teams for free Explore Teams May 30, 2020 · I tried everything and nothing worked. In the console, use window. Unless you put the scroll event on the entire window, you usually require at least 2 divs to create a scrollable area with 1 div constraining the visible height of the other and something like overflow: scroll on the container. maarevenonline. devtools = false Vue. 0), try changing the way the scroll position is returned: window. vue Jul 6, 2017 · Hi, I have tried your example, and it works, except when you refresh with your keyboard, because it picks up as a cancel event, and immediately cancels the scrolling. 0 5df0a - fix: use configured window onScroll . Apr 27, 2020 · Your page needs to have enough content for scrollTop or scrollIntoView to be able to work. scrollTo with options not working on Microsoft Edge. I didnt even know that. getItem('position')); }, []); Jun 1, 2022 · I am working on scroll to top and bottom button using vuetify. nl I am creating a one page website (see url) but the smooth scrolling does not work in Safari. Vue = require The solution did not work for me but the following code works for me. Provide more information to show what you've done to set up a scrollable div. Modified 3 years, 11 months ago. scrollBy も全く反応がなかったので、、、 window の時点で何かしらの理由があって無効になっていると仮定しました Jul 20, 2022 · I am facing issue with scroll behavior in my Nuxt3 project when using nuxt-link. scrollTo(0,0) to work properly in your test environment, you can implement it in any of your setupFilesAfterEnv files: window. scrollTo(0,0) not work in google app script web app on the ios phone or ipad. The code below is supposed to scroll to the bottom of the page: window. The strange part was that the scrollIntoView was working in some parts of the code but not in others, i tried adding the boolean: element. So i turned it on and everything started working. Below is my template code, Jun 29, 2015 · Like @Reed Black mentioned in his answer, the problem might be window. scrollTo function isn't working. Nov 22, 2019 · handler won't be the same handler every time scroll is run - therefore if your code is trying to remove the old handler and replace it, then it won't work - you could make handler a method instead (make it an ordinary function though, not an arrow function - though, why you'd want to change the handler to the same code every time you run onScroll is a mystery Feb 15, 2021 · Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Advertising & Talent Reach devs & technologists worldwide about your product, service or employer brand Mar 10, 2019 · According to Google Bard: "Viewport Resizing: On most mobile browsers, the viewport (visible area) resizes to accommodate the keyboard, pushing content upward and potentially making scrollTo(0, 0) ineffective. js (before the Vue. nuxt/movies@20a859b. The next button is at the bottom of the window. scrollY = ', window. querySelector('body'). Sep 11, 2018 · window. I want it to be able to scroll to the top of the page when the user reaches the botto Aug 7, 2018 · I'm using this to get a smooth scroll to a particular section when a user clicks on a button: window. scrollTo(0, 200) console. scrollTop measures the distance from a) the top of the element to b) the… Mar 30, 2020 · window. 7. scrollTo(), window. Feb 5, 2019 · Actually my problem was that when I used the syntax "return {}" it was working, but on mobile, it was not working at all. NOTE Nov 21, 2023 · The scrollTo function accepts a ref parameter and enables scrolling by using the DOM API function scrollIntoView(). scrollTo({ top:document. Either you have some script that is calling jQuery. Code wise safest use with VueJS is, using nextTick() and ref attribution, especially if execution is triggered following an event (Example: Button Click). I encountered this problem in an open-source project. activeTab = 'Solution Details'; is executing, ie. Thanks for your help :-) Sep 23, 2021 · Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Advertising & Talent Reach devs & technologists worldwide about your product, service or employer brand 0a9ed - feat!: drop Vue 2 support, optimize bundles and clean up v10. let pages = document. Now with 15. scrollTop measures the distance from a) the top of the element to b) the If you have something like this: html, body { height: 100%; overflow:auto; } If both body and html have a height definition of 100% and also scrolling enabled, window. 6. scrollTo(0, 0); } I have tried other solutions, but nothing seems to work. All reactions. What is expected? When routing to a new page and DOM load is complete that it will scroll to the top of the page if not saved position or hash Im trying to set up this scrollto and it is supported by vue 3. js below with recommended return { x: 0, y: 0 } or return { left: 0, top: 0 } and it will not scroll to top of page. the active tab is changing to SolutionDetails. postMessage() and use any javascript windows scroll function available such as window. addEventListener('DOMContentLoaded', function() { console. My anchor tags appear as the result of a component render, but the hash isn't honored after a hard reload w/ Cmd+R. js instance) or wherever you initiate it: Dec 29, 2022 · Any windows scroll function will not work in any IOS device when you are calling it inside an iframe element. scrollTo(0,0) on a button click. requestAnimationFrame to perform the animations, thus giving the best performance. scrollTo(0. scrollTo(0,0) does not work for the particular app. The body is set to not scroll, but the internal router-view div is. scroll(function() not working. And SMOOTH can be added ! Instead of writing 500 (ms), just write 0 if you want it to do it directly and it works fine. Sep 2, 2017 · I wanted to scroll to the bottom of the page using vanilla JS, but I encountered a problem. scrollTop; }; Jun 20, 2014 · As you for your window. In the future I think it will be safe to pass any extra parameter to the scrollTo function while still using scrollTo(x, y) in older browsers, so this may work out of the box. i want to align the selected point to the centre of the div and i have this solution document. The only script that I've been able to get to actually move me back up to the top of the page is this: $(function(){ setTimeout(function(){ window. Currently, i only able to scroll to bottom page. . scrollTo (and all derived scrolling mechanisms) do not work, despite a scrollbar being displayed (which can be used by the user), when the contents exceed that 100% body height. scrollTo did not work as expected while using Jest. Jun 17, 2017 · If SolutionDetails. Try Teams for free Explore Teams Jan 9, 2013 · I've tried window. vue, you’ll find that we have successfully implemented a scroll-to-top functionality in our Vue app that we can plug into any project where we need the same. The main difference that you should use beforeEach to call your animation before the transition actually happens. js. scrollTo on whatever element hosts the router view. scrollTop = 100; It will do the trick! For more information on scrollTo & scrollTop, refer Mozilla/Window/scrollTo & Mozilla/Element/scrollTop respectively. Oct 3, 2022 · Define pulgin file for Nuxt3 in plugins/scroll-behavior. Jun 29, 2021 · I'm trying to remember scroll position between routing pushes, NOT browser back/fwd navigation. But then I found out that window. scrollTo(0,0) I use vuetify and nuxt. Suggest changes to this page. addEventListener('scroll', Dec 20, 2017 · Currently, I'm trying to automatically scroll to the top of the HTML page for which I'm using in my Typescript. scrollTop = y; } May 17, 2022 · I am trying to execute window. scrollHeight was always false because I had set a of padding 120px at the bottom of my scrollable component on mobile. In my component, I have: mounted () { window. When the user clicks on an item I'd like for the page to scroll to the element that contains the content fo Apr 10, 2019 · This code retrieves all the pages from the f7 component in an array. I have pushed out a fix, so doing. The app won't scroll using window. Aug 1, 2018 · I'm trying to use scrollIntoView() in my application, but because I have a top fixed bar, when I use the scrollIntoView(), the elements will be scroll to the fixed bar back. Sep 5, 2022 · For me, the problem came from my App. And after a google search, removing overflow-x: hidden on body and html did the trick. Feb 3, 2017 · import Vue from 'vue' import Router from 'vue-router' Vue. Does not work on first page render: useEffect(() => { window. If the function scrollTo itself is undefined, that would be more problematic. Unfortunately the window. EDITED. But you can use parent. Javascript / CSS window. I tried setting an onchange event for the checkbox itself but that also doesn't scroll. e. Mar 28, 2019 · I have a very simple app, that has 2 components: the App. Jan 28, 2015 · I want to do a simple window. addEventListener('scroll', this. Any idea what could break it? May 19, 2019 · scrollTop is an element property that gets or sets the top position (vertical scroll position) of the selected element. Then see if grabbing that element. scrollBy(). window. vue is the active tab, then the corresponding element is being scrolled into view perfectly fine. body. Is there a workaround or fix for this? Aug 8, 2012 · on my mobile view of my webpage i can scroll in vertical and horizontal direction, but this starts always at the top left corner. scroll(function { console. scrollIntoView(true) and with an object like: Dec 16, 2019 · I'm using ionic capacitor with vue, and trying to use window. " On Android window. js methods on Stack Overflow. scrollHeight); it does not work but if i try window. scrollTo(), with the element being some element near or at the top of your website. scrollTo instead, since in my code a div received the scrollTo call. Easing is done using bezier-easing - A well tested easing micro-library. I want the page to scroll to the top every time the route changes. scrollTo(0,0) works. Nov 11, 2022 · To control this, Vue Router has a scrollBehaviour () function that can fine tune how your app behaves navigating between pages: including returning scroll position to the top of the page on It should use . angular. , using a fresh incognito/private-browsing window)? You of course can always trigger a router-link "click" programmatically by referencing then . scrollTo not scrolling the window. Case: on a long page of products, scrolling down and clicking on one of the items to see its details, Dec 12, 2016 · It looks like the documentation is outdated, probably the syntax shown in the documentation is regarding vue 1. scrollToが全く反応してくれなかったのですね。 👇これも試しました。 👇の例で使われてる window. Ask Question Asked 6 years, 4 months ago. Jul 25, 2014 · Window Scroll Function Not Working. Here’s what I’ve tried: Oct 22, 2015 · I'm trying to scroll to a particular element after finding it on a page in my Angular app. scrollTo(0,0); Now, this page is loaded in an iframe and the window. browser. scrollTo(0,0) to make it work. Reload to refresh your session. Jan 22, 2021 · Replace the window. If you're on Firefox and open up the dev tools you should be able to see which HTML elements are tagged with scroll. click()ing one after the page is ready. For some reason the . So I tried this, it works. querySelector(". vue where I hold the rest of the structure of the app: a sticky header and some sections with anchors to scr Feb 10, 2020 · Vue. To make it so that the page will instantly go to the top, I had to specify in the scrollTo function that I wanted the scroll behavior to be instant. data('y'), left: 0, behavior: 'smooth' }); Aug 28, 2019 · window. Running Nuxt edge w/ up-to-date yarn upgrade. scrollTo(0,0); doesn't work. Nov 22, 2016 · Why not just use window. 4 Browser: Safari 14. May 7, 2009 · I have the function executing when the user gets close to the top of the document, but the . scrollTo() methods to have no effect. scrollTo on the first render using useEffect function. log('window. Anyone knows what can cause this? The text was updated successfully, but these errors were encountered: Jan 1, 2018 · For me, the Element. offset(). 2 $(window). 0+ Custom Directives: I needed to bind the scroll event too, then I implemented this. I had to use document. Ask Question Asked 10 years, 5 months ago. log($(window)) and check it's properties just to make sure). I'll still have to figure out how to detect what syntax is supported by browsers May 19, 2019 · scrollTop is an element property that gets or sets the top position (vertical scroll position) of the selected element. One is a Jun 25, 2017 · It turned out that the condition $(window). Apparently windows 11 by default got "Animation effects" turned off. scrollTo(0,9999999999999 Apr 12, 2021 · window. scrollTop || document. I've tried a simple alert(), console. scrollTo(0,0), I tried in in the Chrome F12 debugger window and works just fine. window. scrollTo(x,y) is work in desktop website and Android phone, but it can't work on ios mobile, I don't know what's wrong with it, I In one of my tests I execute a method that scrolls an element. Use element. Sep 19, 2021 · If you need height: 100vh, then I would recommend using element. import { createApp } from "vue"; import App from ". scrollTo({top:0}) returned undefined when I typed it in the console. Actually, I was completly wrong about this, v-on:scroll and @scroll will be handled by vue itself, no need for the vue-scroll lib. I have this problem too, but in my case 'page:transition:finished' didn't fix the problem, but 'page:finished' did Nov 22, 2024 · I’m working on a React app using react-router-dom. vue but the requested element is not scrolled into view. The vue-scroll lib is actually not working in the example I linked. My css : body { scroll-behavior: smooth; } In the page, I also use some javascript. Oct 2, 2021 · Bricks Version: 1. vue"; import VueScrollTo from 'vue-scrollto' // Initialize Vue app const app = createApp(App) // Add Vue directive app. scrollTo(0,0) },2000); }); which is even worse than not scrolling at all. scrollTo({ top: 0, behavior: 'smooth' }); And we are the same effect with less line code, and it's supported by old and recent browser :) – Sep 29, 2020 · I have a Vue 3 component that I'm trying to setup as my navigation for a single page app. scrollTo(0, -1). scrollTo and window. Pager. I found also that adding the following CSS caused the window. element(document). 僕が実装したいVue. 0) but it's not working. The navbar is inside the body. top); If you want to scroll the modal div to the top use Apr 3, 2020 · I just had this same problem, the auto scroll was working everywhere except IOS on both chrome and safari. scrollTo(0,0) does nothing with the GUI. Sep 7, 2021 · So im building a nuxt application, and I want to the Page to scroll down to a specific element, after I clicked a button. Nothing works. scrollY) } }, created () { window. prototype. css file where I had set scroll-behavior: smooth; for all elements.
oyvz tpueg rolpmy lxk mjxv qbrmtgl fssu sdjfn cbv ywlsw
{"Title":"What is the best girl
name?","Description":"Wheel of girl
names","FontSize":7,"LabelsList":["Emma","Olivia","Isabel","Sophie","Charlotte","Mia","Amelia","Harper","Evelyn","Abigail","Emily","Elizabeth","Mila","Ella","Avery","Camilla","Aria","Scarlett","Victoria","Madison","Luna","Grace","Chloe","Penelope","Riley","Zoey","Nora","Lily","Eleanor","Hannah","Lillian","Addison","Aubrey","Ellie","Stella","Natalia","Zoe","Leah","Hazel","Aurora","Savannah","Brooklyn","Bella","Claire","Skylar","Lucy","Paisley","Everly","Anna","Caroline","Nova","Genesis","Emelia","Kennedy","Maya","Willow","Kinsley","Naomi","Sarah","Allison","Gabriella","Madelyn","Cora","Eva","Serenity","Autumn","Hailey","Gianna","Valentina","Eliana","Quinn","Nevaeh","Sadie","Linda","Alexa","Josephine","Emery","Julia","Delilah","Arianna","Vivian","Kaylee","Sophie","Brielle","Madeline","Hadley","Ibby","Sam","Madie","Maria","Amanda","Ayaana","Rachel","Ashley","Alyssa","Keara","Rihanna","Brianna","Kassandra","Laura","Summer","Chelsea","Megan","Jordan"],"Style":{"_id":null,"Type":0,"Colors":["#f44336","#710d06","#9c27b0","#3e1046","#03a9f4","#014462","#009688","#003c36","#8bc34a","#38511b","#ffeb3b","#7e7100","#ff9800","#663d00","#607d8b","#263238","#e91e63","#600927","#673ab7","#291749","#2196f3","#063d69","#00bcd4","#004b55","#4caf50","#1e4620","#cddc39","#575e11","#ffc107","#694f00","#9e9e9e","#3f3f3f","#3f51b5","#192048","#ff5722","#741c00","#795548","#30221d"],"Data":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[6,7],[8,9],[10,11],[12,13],[16,17],[20,21],[22,23],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[36,37],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[2,3],[32,33],[4,5],[6,7]],"Space":null},"ColorLock":null,"LabelRepeat":1,"ThumbnailUrl":"","Confirmed":true,"TextDisplayType":null,"Flagged":false,"DateModified":"2020-02-05T05:14:","CategoryId":3,"Weights":[],"WheelKey":"what-is-the-best-girl-name"}