Cookies help us deliver our services. By using our services, you agree to our use of cookies.

MediaWiki:Common.js: Razlika med redakcijama


 
(2 vmesni redakciji istega uporabnika nista prikazani)
Vrstica 1: Vrstica 1:
 
/* Any JavaScript here will be loaded for all users on every page load. */
 
/* Any JavaScript here will be loaded for all users on every page load. */
 
$("#test").html("any HTML");
 
 
function fun()
 
{
 
  var data="hello";
 
  $.get("http://mars.feri.um.si:8080", function(response) {
 
        data = response;
 
  }).error(function(){
 
  alert("Sorry could not proceed");
 
});
 
  console.log(data);
 
var myElement = document.getElementById('test');
 
  myElement.innerHTML = 'any HTML';
 
  return data;
 
}
 

Trenutna redakcija s časom 09:47, 9. november 2016

/* Any JavaScript here will be loaded for all users on every page load. */