I am still spinning up in SKUID so I apologize in advance if I am not using the right terminology . We have a problem when loading a page in that the focus is going to a control way down the page. There is javascript that will scroll to the top of the page - is there a straight forward way in SKUID to add this javascript to a SKUID page so it is the very last thing to run (so when the page is done loading the user is at the top of the page)?
Page 1 / 1
Have you tried running your code in the $( document ).ready() event?
Or, you can try this:
(function(skuid) { var $ = skuid.$;<br> $('.nx-page').one('pageload', function() {<br> // your code goes here<br> }); <br>})(skuid);
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.