Hi,
Thx for your replay but
i still can't get it to work.
As you sad I'm declaring the function here:
- (function($) {
- $(function() {
- function testfunction (){
//Some code...
}; - });
- })(jQuery);
But I want to call it form outside of this script, from an external file.
There I want to use something like this to run the function in the main file:
- testfunction();
Thx.