whatsapp link from Phonegap/JQM

whatsapp link from Phonegap/JQM

I'm building an app with phonegap/JQuery mobile. I had button to share some stuff on Whatsapp but since I've updated my phone to kitkat, this doesn't work anymore. The button gets a click event, but nothing happens.

I use this code from the whatsapp site :

  1. <div data-role="controlgroup" data-type="horizontal">
  2.     <a data-role="button" id="joinButton">Join</a>
  3.     <a data-role="button" id="showComments">Comments</a>
  4.     <a href="whatsapp://send?text=Hello World!" data-role="button" target="_blank" id="shareButton">Share</a>
  5. </div>

I've already tried adding rel="external" data-ajax="false" attributes to the link, but this doesn't help. Also I've tried replacing the hrel to "http://www.google.com" and this gives the same behaviour, none ;)

Does anybody know how to solve this?

thanks in advance!