Tagged Questions
0
votes
0answers
57 views
How to refactoring a 'self' declaration depending on the current context?
I am using jQuery v1.8.3 and jQuery UI v1.9.2. After my previous question, I ended up with the following working code:
$('#input_id').autocomplete({
create: function (event, ui) {
// Initialize ...
0
votes
1answer
108 views
jQuery reference to self in custom function initialize
another challenge - this is more for cleaner looking code than a "how do I". Here's the idea.
<section id="projector" data-start-at="7">....</section>
in JS
...
2
votes
1answer
476 views
Using Jquery $(this) in Meteor
How can I use the this function in meteor? for example, I want to be able to click on any given element and find out what its class is. Also, how can I get information on the item that I click on ...
0
votes
1answer
77 views
jquery plugin - calling methods
so I am building my first plugin for jquery I have an init method
init: function(options, elem) {
var self = this;
This calls a couple of methods
this.slide(elem);
this.lightbox(elem);
...
0
votes
3answers
182 views
Video, flash or… videos for HTML [closed]
I'm not new to HTML, CSS, JS or PHP, I already made diff. web pages, but every time when I included a video from YouTube or from another external site, I always used iframe, or embed code. So, today I ...
1
vote
2answers
81 views
Access previous values within object during declaration [duplicate]
Possible Duplicate:
Self-references in object literal declarations
var obj = {
value: 10,
value2: value + 2
};
How can I do the above? (Assuming it's even possible)
I am using a ...
0
votes
2answers
278 views
jQuery: Add function self to array?
Given a function, like so:
var allev = new Array();
function events(index) {
allev[index] = $(this); // doesn't work
}
Is there any way to get this to work in the way above, or am I always ...
4
votes
2answers
946 views
Descendent or self selector in jQuery
I want to search for all elements with class needle in all elements returned by jQuery('.haystack') and have tried jQuery('.haystack .needle'), but this doesn't seem to pick up the case where an ...