Max Cataraga’s Blog

Only the small secrets need to be protected. The big ones are kept secret by public incredulity (Marshall McLuhan)

Archive for the 'JavaScript' Category

Cum sa incluzi un JavaScript file intrun JavaScript

Pentru a un JavaScript file intrun HTML scrii simplu:
<script language="JavaScript" type="text/javascript"
src="external.js">
</script>

unde “external.js” este numele (sau intreaga cale) a JavaScript file-ului.

Pentru a include un file extern JavaScript includeti urmatoarea functie in codul vostru:

Read more

No comments

JavaScript usefull things

  • Trim a string

function trim(stringToTrim) {

return stringToTrim.replace(/^\s+|\s+$/g,”");

}

  • Get, modify CSS ClassName with JavaScript

document.getElementById(”ID”).className = “LinkExpand”;

No comments