Widget:Singlepaymentsepa: Unterschied zwischen den Versionen

Aus Freifunk Dresden - Anwender-Wiki
Zur Navigation springen Zur Suche springen
Zeile 18: Zeile 18:
 
*/
 
*/
  
var myjquery = jQuery.noConflict( true );
+
var my = {};
 +
my.query = jQuery.noConflict( true );
  
// start when DOM is ready
+
// use new way to call function when DOM is ready. old way was $(document).ready(handler)
myjquery(function() {
+
my.query(function() {
  
   var url ='<!--{$url|escape:'html'}-->'
+
   alert( 'DOM Ready' );
  myjquery('#qrcode').qrcode(url);
+
// var url ='<!--{$url|escape:'html'}-->'
 +
// my.query('#qrcode').qrcode(url);
  
 
});
 
});

Version vom 19. Dezember 2018, 13:42 Uhr


<script type="text/javascript" src="/qrcode/jquery.js"></script>
<script type="text/javascript" src="/qrcode/jquery.qrcode.min.js"></script>
<script type="text/javascript">

/* https://api.jquery.com/jquery.noconflict/

If for some reason two versions of jQuery are loaded (which is not recommended), calling $.noConflict(true) from the second version will return the globally scoped jQuery variables to those of the first version. Some times it could be issue with older version (or not stable) of JQuery files.

Solution: move new jQuery completely in new object and use this.

  • /

var my = {}; my.query = jQuery.noConflict( true );

// use new way to call function when DOM is ready. old way was $(document).ready(handler) my.query(function() {

 alert( 'DOM Ready' );
// var url =
// my.query('#qrcode').qrcode(url);

});


/* //make qrcode clickable my.jquery('#qrcode').click(function() {

 alert( 'my.url' );

})

  • /

</script>


<a href="bank://singlepaymentsepa?name=Freifunk%20Dresden%20e.%20V.&reason=Mitgliedsbeitrag%20&iban=DE83830654080004956222&bic=GENODEF1SLR&amount="></a>