Phonegap: Scroll top on statusbar tap

cordova, ios, scroll, statusbar

Solution

Update for 22.9.2016

It's working fine

Plugin ID has changed, install it using:

cordova plugin add cordova-plugin-statusbar

Tested with cordova-6.3.1 cordova-ios-4.2.2 in the iOS 10.0 simulator and an iPhone 6s Plus running 9.3.5.

The official status-bar plugin has this feature. https://github.com/apache/cordova-plugin-statusbar

Install:

cordova plugin add org.apache.cordova.statusbar

In your javascript:

window.addEventListener('statusTap', function() {
    //scroll-up or do whatever you want
});

Problem

I am implementing a webapp using jQuery Mobile and Phonegap. One thing I am missing, is the following: The App should scroll to the top when the statusbar is tapped. I have already seen that using Objective C one has to indicate the view that has to scroll to top on tap. Is it possible to do something similar with Javascript/Phonegap?

Original source

Related problems