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...

2
  • Gave it a try, no luck. I've added the update above. Commented Jun 23, 2012 at 1:43
  • I think the eval() will do the job but can be dangerous : stackoverflow.com/questions/86513/… Commented Sep 28, 2012 at 7:56

3 Answers 3

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();
Sign up to request clarification or add additional context in comments.

2 Comments

I tried this to no avail unfortunately. It is still trying to call the call() method on a string it seems
@petehare no, its not calling a string. the answer uses that string to point to that function in a certain namespace.
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');
};

1 Comment

Similar thing happening, it's reading myFunction; as a string and trying to run the "myFunction;".call() method on the string...
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>

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.