Jump to content

Search the Community

Showing results for tags 'JQuery'.

  • Search By Tags

    • jquery ×
    Type tags separated by commas.
  • Search By Author

Content Type



Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Found 5 results

  1. An example on how to inject jQuery into a web page It can be useful to manage the page from AutoIt using jQuery. Idea from here: http://www.learningjquery.com/2009/04/better-stronger-safer-jquerify-bookmarklet Suggestions and improvements are welcome #include <ie.au3> Example() Func Exam...
  2. I needed a quick and dirty approach to splitting up jQuery multiple selectors, so I could record if a selector pattern had already been used. So I came up with this "quick 'n' dirty" hack. If someone can up with better let me know. I tried to look at the sizzle source, but didn't have enough time to...
  3. (function goodExample($) { var $selector = $('.someClass'); // Stop flickering $selector.hide(); $selector.css({ background: 'blue', }); $selector.show(); }(window.jQuery)); (function badExample($) { // Stop flickering $('.someClass').hide(); $('.someCla...
  4. I was look at the difference between the current jQuery and v3.0. What I noticed was the following had be changed in once section of the code. Now I am wondering is there a performance difference in an interpreted language with regards to >= compared to just >, or is it pure readability only? Is it...
  5. Hello, this is a little piece of code, I use to generate an index.html page. (The index.html is a starting point to navigate through the local file structure and openend via a link from our web application.) Workflow: 1) Read the file structure (recursive) 2) Write the html file (which includ...
×
×
  • Create New...