11

I'm working with a Javascript file upload library, and one of it's features is that it uses HTML5 inline data- attributes to pass information to the plugin.

This is working great for anything data related, strings, numbers etc., however the plugin has some callback methods you can assign function to. My problem is that when trying to pass a javascript function through these inline data attributes, like this:

<input type="file" name="test" data-on-finish="alert();">

The plugin picks up the reference to the onFinish() callback method fine, but when it tries to execute whatever javascript I put in there I get the error:

Uncaught TypeError: Object alert(); has no method 'call' 

I'm assuming it's reading the alert(); as a string. Any idea how I can pass through executable javascript to the plugin?

I believe the plugin I'm using is an extension to the jQuery file upload plugin: https://github.com/blueimp/jQuery-File-Upload/wiki/Options

Update: I've also tried using globally defined functions, like this:

<script type="text/javascript">
    function myTesting(){
       alert('yay');
    }
</script>
<input type="file" name="test" data-on-finish="myTesting">

I've tried changing the data-on-finish attribute to myTesting, myTesting(), still had no luck...

petehare
  • 1,874
  • 16
  • 14
  • Gave it a try, no luck. I've added the update above. – petehare Jun 23 '12 at 01:43
  • I think the eval() will do the job but can be dangerous : http://stackoverflow.com/questions/86513/why-is-using-the-javascript-eval-function-a-bad-idea –  Sep 28 '12 at 07:56

3 Answers3

20

why not place the name of the callback instead? something like

//for example, a global function
window['someFunctionName'].call();

//a namespaced function
//similar to doing ns.someFunctionName()
ns['someFunctionName'].call();
Joseph
  • 117,725
  • 30
  • 181
  • 234
  • I tried this to no avail unfortunately. It is still trying to call the `call()` method on a string it seems – petehare Jun 23 '12 at 01:45
  • @petehare no, its not calling a string. the answer uses that string to point to that function in a certain namespace. – Joseph Jun 23 '12 at 03:48
0

It looks like it is trying to call a function back, as in, myfunction.call(

Try passing is a function like this.

<input type="file" name="test" data-on-finish="myFunction;">

function myFunction(){
 alert('I am alerting');
};
Vinyl Windows
  • 503
  • 1
  • 7
  • 19
  • Similar thing happening, it's reading `myFunction;` as a string and trying to run the `"myFunction;".call()` method on the string... – petehare Jun 23 '12 at 01:47
0

Use something like this:

$(function() {
  function test() {
    alert("ok");
  }

  $(".test").data("test", test);
  $(".test").data("test")();
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<div class="test">
</div>