Jump to content
UBot Underground

Search the Community

Showing results for tags 'jQuery'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Announcements and News
    • Join the UBot Community
  • General
    • General Discussion
    • Mac and UBot Studio
    • Journeys
    • Buy, Sell, Free
    • Scripting

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests

Found 7 results

  1. Hi there, I created a whole HTML page with jQuery using my NetBeans editor and it works perfectly when I tested it on Chrome. When I copied and pasted it to the UI HTML panel and compiled it, however, it didn't work. The checkboxes wouldn't be checked, and the textboxes gets cleared right after the focus left. Is there a workaround for this? Here's my UI HTML Panel: ui html panel("<!DOCTYPE html> <html> <head> <title>Tumblr Bot</title> <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\"> <script src=\"htt
  2. Hello everybody, I'm confront to one problem. By habit, i use a command javascript on "run javascript" to scroll my page. However, on the site where i develop my bot the javascript command no word. i have think at the command "jquery" assumption. does it work with ubot? i have find this on stackoverflow: $('html, body').animate({ scrollTop: $("#elementtoScrollToID").offset().top }, 2000);}); Could someone help me please, because I tear my hair Thank you by advance
  3. Help! A site I have been scrapping data from has recently updated and data is now being displayed in an 'accordion' sort of way (ajax/jquery). Data is displayed as you scroll down the page in a browser but in Ubot Studio, after an initial display on scrolling, you get to the footer of the page with each mouse scroll which results in a blank display appended to the page in place of the expected data. Please find attached Ubot Script. Gone through the spectrum of user agents but all have the same problem. I have limited knowledge of ajax/jquery/ubot studio so unable to figure out the probl
  4. Cool stackoverflow article. It may help someone somewhere im sure http://stackoverflow.com/questions/5667880/simple-screen-scraping-using-jquery Using ajax "Use $.ajax to load the other page into a variable, then create a temporary element and use .html()to set the contents to the value returned. Loop through the element's children of nodeType 1 and keep their first children's nodeValues. If the external page is not on your web server you will need to proxy the file with your own web server." Something like this: $.ajax({ url: "/thePageToScrape.html", dataType: 'text', success: fun
  5. So I know jquery can be used in the UI HTML panel and I know that there are many jquery datagrid solutions out there. That being said, being new to jquery, I've had difficulty in implementing solutions like these within the UI HTML panel: http://www.jeasyui.com/demo/main/index.php?plugin=Application&theme=default&dir=ltr&pitem= http://www.datatables.net/examples/basic_init/zero_configuration.html http://paramquery.com/pro Are we able to take advantage all that these solutions offer within the UI Html panel? For example, using most of these solutions, I can create and popu
  6. I want my bot to be able to submit forms. I also want to work out (automatically) whether or not the bot was successful (whether or not the form actually was submitted). Here is an example: http://fraserellis.co.uk/contact-us/ So I need a way to monitor whether the JavaScript submit happens or not. Could this be done by monitoring the HTTP POST requests sent by the UBOT browser? Could this be done by inserting JavaScript into the page like this onsubumit function? function hello() { alert("The form was submitted");} var formS = document.getElementsByTagName("form");var form = form
  7. I came across this really cool site. My friend sent it to me, told me his Teacher help make it. I think its really useful + its helping me understand things by being able to do them in real time. Might not be for all but if you are trying to learn more about coding, depending what your learning, this site may be able to help. http://www.codecademy.com/ Hope you enjoy it as much as i do.
×
×
  • Create New...