I have a jQuery function that updates my data ever few seconds.

But! It's not parsing the javascript it's loading. It just calls it appropriately every few seconds, and replaces my content with unparsed javascript code.

setupMediaIndexPoller: function(organization) {
    url = '/organizations/' + organization + '/media/photos_and_video'
    $.PeriodicalUpdater(url, {
       method: 'get',          
       data: '',                  
       minTimeout: 20000,       
       maxTimeout: 60000,       
       multiplier: 2,          
       type: 'html',       
       maxCalls: 0,            
       autoStop: 0             
     }, function(data) {
         $('#media_index').html(data);
     });
}

I tried making the dataType: script, but that didn't help. Any ideas?

link|improve this question

5  
You forgot to say pweez... – Justin Niessner Sep 21 '10 at 17:33
Updated behest your request. – Trip Sep 21 '10 at 17:39
6  
Update your title to sound like you are not a total idiot. – Chris Sep 21 '10 at 17:40
5  
Is your backend written in LOLCODE by any chance? – Jeff Sep 21 '10 at 17:40
No, it isn't. But maybe that would get people to stop downvoting me for having an eloquently descriptive title. – Trip Sep 21 '10 at 17:42
show 2 more comments
feedback

3 Answers

up vote 3 down vote accepted

You want to have this string evaluate as javascript? If so, use Javascript's eval function:

http://www.w3schools.com/jsref/jsref_eval.asp

link|improve this answer
thanks treeface. i'd hug you if i was a bigger hippie. – Trip Sep 21 '10 at 17:49
2  
@Trip - please be very careful with the use of eval(). You need to be certain that any code sent to it has not been tainted in any way. While powerful, it can lead to a lot of unwanted XSS issues if not used properly. – Brian Sep 21 '10 at 17:53
Interesting. What else can I use? – Trip Sep 21 '10 at 18:12
There's lots of options on what else to use, just depends on how you're doing it. I tend to insert my elements into the dom with an $(document).ready(function () { /* new exec code goes here */ }); flavor already embedded in them (where the block is generated serverside for me, instead of clientside), and I do an append by containing div then remove the previous container (using child selectors) ... works really well for me. No EVAL needed. – jcolebrand Sep 21 '10 at 18:19
1  
@dracenstern, the trouble with that is that Trip is making (what I assume to be) an asynchronous call to the server, after the browser has read all available Javascript. As long as Trip knows where his code is coming from and properly cleans for XSS (I imagine RoR does this automatically for user inputs?), using eval shouldn't be a problem. That said, I never use it myself because I haven't found a situation where it would be particularly useful, but for a highly-modular architecture, perhaps it would be. – treeface Sep 21 '10 at 18:28
show 4 more comments
feedback

Try a little of this, maybe?

type: 'get'
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.