Search the Community
Showing results for tags 'JQuery'.
-
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...
-
Split multiple selectors for use with jQuery
guinness posted a topic in Developer General Discussion
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...- 2 replies
-
- jquery
- javascript
-
(and 3 more)
Tagged with:
-
(function goodExample($) { var $selector = $('.someClass'); // Stop flickering $selector.hide(); $selector.css({ background: 'blue', }); $selector.show(); }(window.jQuery)); (function badExample($) { // Stop flickering $('.someClass').hide(); $('.someCla...
-
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...
-
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...