views:

129

answers:

1

I am trying to inject JQuery into a UIWebView of a page that I can't control, say Google, for example. When a UITextField gets focus, I am executing the following lines of code:

NSString* scriptInject = @"var headElement = document.getElementsByTagName('head')[0]; var script = document.createElement('script'); 
    script.setAttribute('src','http://jquery.com/src/jquery-latest.js');
    script.setAttribute('type','text/javascript'); headElement.appendChild(script);";
    [myWebView stringByEvaluatingJavaScriptFromString:scriptInject];    
    [myWebView stringByEvaluatingJavaScriptFromString:@"$(document).ready(function() {$('body').css('background', '#FF0000');}"];

I am executing the background change to validate that I am able to run a JQuery script. I can verify that the Objective-C method is being called, and I even planted an alert for the onload of the newly created <script> tag, so I know that it is being executed in the UIWebView. How do I inject it correctly that I can execute it?

EDIT:

I have event tried this after calling the function to change the color:

[myWebView stringByEvaluatingJavaScriptFromString:@"alert($('body').css());"];

No alert shows.

+1  A: 

If jQuery is not in the DOM already you can use stringByEvaluatingJavaScriptFromString: to inject it. I've had similar problem, I wrote a blog post about it: HTML parsing/screen scraping in iOS.

Benedict Cohen
I find that my code does indeed work, just not reliably. After reading your article, it may be because the DOM is not yet ready. After skimming over your article, performing a delayed selector may be the trick for waiting to execute the change using jQuery until the DOM is ready. I'll give it a try when I get a chance.
Wayne Hartman