java console error about touch navigation

In your code, whatever is right in front of .querySelectorAll is not found. So for example, thisObject.querySelectorAll, thisObject is not defined so the function fails finding all the elements that that function is looking for when there is no object to query within. There would need to be more code to be able to figure … Read more

script not working anymore after saving widget settings

OK, here is my code and some more information. This is the markup structure without the form fields of my widget: <div id=”widget-XX_my-widget” class=”widget open” style=””> <div class=”widget-top”> <div class=”widget-title-action”> </div> <div class=”widget-title ui-sortable-handle”> <h3>My Widget-Title<span class=”in-widget-title”></span></h3> </div> </div> <div class=”widget-inside” style=”display: block;”> <form method=”post”> <div class=”widget-content”> <div class=”my-widget-section”> <div class=”my-widget-top”> </div> <div class=”my-widget-inside active”> … Read more