JQuery :: Query On Usage As A Callback

Mar 17, 2011

My original fiddle for a solution used a separate callback function which just called def.resolve().However I then remembered that I've seen other code simply pass "def.resolve" as a callback in its own right. I tried this instead, and it works (see http://jsfiddle.net/Nyg4y/3/).This got me wondering - how does this work? As I understand it for this to work at all the value 'def.resolve' must be specific to 'def'.This suggests that it is actually a (reference to a) closure holding a reference to 'def' in its scope. Is my understanding correct, and if so is this behaviour guaranteed?

View 2 Replies


ADVERTISEMENT

JQuery :: GetJSON Callback Without Query String?

May 5, 2011

I'm doing some cross domain JSON requests and I'm unable to use query strings on my webservice calls (similar to codeignitor requests but without the work-arounds, qs params are entirely off the table). Is there another way I can format the callback variable to the url request?

for instance if I need to call the following url:

[URL]

is there some way I could call the url

[URL]

instead of:

[URL]

View 1 Replies View Related

JQuery :: GetJSON Fail On Callback - Callback Is Never Called ?

Apr 13, 2010

I use the getJSON request to fill a select (with cities names) after the user have choosen his region.

I paste some code:

The problem is that callback is never called. I used firebug and i have seen that when i change region the getJSON function is called and my script (python) return this JSON:

Why my callback is not called? I can't even get the alert ('callback time!'). I thinked that my json could be broken, but firebug net console read and parse it very well, so i think is valid JSON.

I also tried to split up the function declaration from the getJSON request, but it's no use.

View 5 Replies View Related

JQuery :: SetDate In Datepicker Usage?

Mar 3, 2010

Am using the jQuery datepicker and am having a heck of a time setting the date in it.I declare my datepicker with:

Code:
$('#datepicker').datepicker({
inline: true,

[code].....

View 1 Replies View Related

JQuery :: Checking Invalid Usage Of (Val And Text)

Jan 13, 2012

Is there a way to check the page for invalid usage (e.g. text boxes using .text which doesnt exist)? I originally thought I could use the .data("events") but then realize that .text and .val isn't an event which is pretty obvious but I'm stuck now. I already know my selector is $('input[type="text"]') but is there any way to see if anywhere on the page is improperly calling .text()?

View 2 Replies View Related

JQuery :: Usage Of Animate - Elements First Disappear Then Display

Nov 15, 2010

I have a list for example
<ul id="applications">
<li id="id-1" class="util"></li>
<li id="id-1" class="app"></li>
<li id="id-1" class="util"></li>
<li id="id-1" class="app"></li>
</ul>

Then I want a select some of the list with some animate effect, first the all of the elements would disappear, then the elements that I wanted would display one by one the code:
$('#applications li').each(function (index) {
setTimeout(function (e) {
e.hide("slow");
}, index * 100, $(this));
});
$('#applications li[class="app"]').each(function (index) {
setTimeout(function (e) {
e.fadeIn("fast");
}, index * 100, $(this));
});

The final effect is that all the elements would disappear first but the element I wanted would not display? Then I think about the queue,before I use it I change a little about the code:
$('#applications li').each(function (index) {
setTimeout(function (e) {
e.hide("slow");
}, index * 100, $(this));
});
$('#applications li')
.each(function (index) {
setTimeout(function (e) {
e.fadeIn("fast");
}, index * 100, $(this));
});

The yellow part is the different from the former one, the effect is that all the elements would disappear first, then all the would display again without any problem!

View 3 Replies View Related

JQuery :: Loading From Local File System For Offline Usage

Apr 11, 2010

I'm having an issue getting jQuery to load from a local file system. My head links are:
<script type="text/javascript" src="js/jquery-1.3.2.min"></script>
<script type="text/javascript" src="js/jquery-ui-1.7.2.custom.min.js"></script>
<script type="text/javascript" src="js/jquery.scrollTo-min.js"></script>
<script type="text/javascript" src="js/jquery.localscroll-min.js"></script>
<script type="text/javascript" src="shadowbox-3.0.3/shadowbox.js"></script>
<script type="text/javascript" src="js/myscripts.js"></script>

This works fine when served from my server via http. However, I want to load this entire site (including all linked js/css files) from a local filesystem for offline usage. When I move the project to a local filesystem, the browser throws a bunch of errors from the secondary scripts (like jquery-ui) which indicate that the main jQuery lib isn't loading (ie.ReferenceError: Can't find variable: $). This behavior is consistent across IE7/FF3/Safari4Mac.

View 2 Replies View Related

Popup Usage

Jul 23, 2005

The question has to do with the use of popup
windows in a web page. I have heard that popup
windows should be avoided; due to use of popup
blockers and browser that do not process javascript.

Is the use of popup windows bad design?
Will it severly reduce the usage of our web page?

Note, The popup windows are created using only
onClick events, not onLoad or onClose events.
Do popup blockers make any distinction between
the two?

View 3 Replies View Related

String().replace() Usage...

Jul 23, 2005

Can someone help my syntax?

var z=myForm.myInputTag.value.string().replace(" ","-");

I would expect the above to allow z to take the value of an input tag
(called myInputTag) and replace spaces with dashes...

It doesn't change the string - nor do I get errors in the Mozilla
javascript console...

View 4 Replies View Related

I.E.6 / Javascript Causing 100% CPU Usage

Jul 20, 2005

I'm really hoping someone out there can help me with an unusual,
frustrating XP problem that I just can't seem to fix.

When certain web pages are opened with my Internet Explorer 6, it
causes the CPU to jump up to 100% usage, and my computer comes to
almost a halt. The culprit, according to Task Manager, is always
IEXPLORE.EXE, or at least one of the IEXPLORE.EXEs if there are
multiple instances.

I've noticed a common thread to virtually all sites that cause the
CPU to run at 100% -- Javascript. Pages containing Javascript are
virtually always the problem. Examples:

1) almost all pop up windows
2) Yahoo! Mail
3) Match.com Searches
4) All Music Guide

I'm not a computer expert at all, so I've only done what I can think
of, or what has been suggested to me. I've checked/removed
spyware/malware with multiple pieces of software (Spybot, etc.) I've
defragged. I've checked for viruses using both NAV and PC-cillin.
I've used my System Mechanic program to go through almost all
fixes/maintanance/optimizers. The only thing i haven't been able to
do is Windows ChkDisk, because it gets stuck every time I try to use
it.

View 1 Replies View Related

New & Delete Usage Question

Jul 20, 2005

I'm used to C/C++ where if you "new" something you really need to "delete"
it later. Is that also true in javascript? if i do "mydate = new date();"
in a function and dont "delete mydate" when the function exits do i have a
memory leak or other trouble brewing?

ie:
function MyFn() {
var mydate;

mydate = new date();
}


does the above function present a problem (what if its called over and over
and over etc)? or is the allocation automaticaly freed on function exit?

View 2 Replies View Related

Objects And Memory Usage - To Be As Low As Possible

Jul 4, 2009

I'm writing a very complex javascript application and I'd like memory usage to be as low as possible, so I've got a question about objects.

I'm using jQuery and my code is a bunch of jQuery plugins that interact with eachother. Will there be a difference in memory usage if I declare functions like this:

I haven't written anything in javascript as complex as I'm about to write, so I never worked with objects. As far as I understand, $.fn.whatever will add function to prototype, while $.whatever will add function only to one entry of jQuery object.

So question comes down to this: when jQuery object is being created, are functions in it being copied (meaning increase in memory usage) or does javascript only make references (meaning no significant increase in memory usage) to one main entry of that function in prototype?

View 3 Replies View Related

Apple's New Website And Its Usage Of Js?

Jan 27, 2011

I noticed that Apple updated their website. In this thread I asked what people's thoughts on it were, but one of the main things I noticed in the mac and or the iPod pages is that the content elegantly spreads outward form the centre and fades in when the document is loaded.

So, I have a few questions, How would one do this? I know the fading can be done with jQuery, but what about the fanning-out form the centre? And also how the fade order is from top to bottom not what loads first is one of the aspects that makes it elegant, I believe. How would one do this?

View 1 Replies View Related

Passing A Variable As A Link For Php Usage?

Apr 13, 2010

I have a simple page and a javascript that measure the time the user has spent on a page and I want that variable to pass as a link to another page (php). I'm stuck (rookie) with how to actually pass that on in the link.Here's my code:

<?php session_start();?>
<html>
<head>

[code]....

View 2 Replies View Related

Ajax :: Alter The Usage Of Function

Jan 16, 2009

I am using this code load a file from server to display in to a div.

Code JavaScript:
function getHTTPObject() {
var xhr = false;
if (window.XMLHttpRequest) {
xhr = new XMLHttpRequest();
[Code]...

I want to use the same script but apply for a button, clicking the button, a file called from server will display in the div "ask_seller". Since button has no href attribute, I don't know how to name the file that going to be called(or I don't know what is the usage in this case)

View 4 Replies View Related

Parsing XML Information - CPU Usage Too High

Feb 4, 2010

I am fairly new to javascript but I am an experienced php programmer. I have been parsing XML information using php, but my CPU usage has been too high recently due to this. I am trying to convert my scripts to javascript, but I am unsure how I can do this using javascript. I think that if I get started off, the rest will be easy.
One of my XML files is located at
Code:
http://ws.audioscrobbler.com/2.0/?method=user.getrecenttracks&user=bbcradio1&api_key=c910b0bc1e2d4e64964ebcd2d69c255c&limit=500
Basically I have been trying to grab the Name, Artist and large image of the most recent <track>.

View 3 Replies View Related

Minimiza Cpu/memory Usage,with Each Function?

Aug 23, 2011

I have a really long application so i'm trying to minimiza cpu/memory usage,with each function, therefore I have a few simple questions.

1. on elements added after the page has been loaded,is there a difference between putting "onclick" inside the element tag or using jquery's delegate like the following example?

$("#mainchatwindow").delegate('img[func="gift"]','click' function....

2. does it make a big difference selecting an element with a full path like (#body #contentdiv #userstbl td.example)or just typing (.example) ?

3. I have 2 arrays of objects, both objects has an id attribute, one of then objects are the images on the page, the second one is an ajax result with updated images.will it be better to first loop threw both objects just to create new arrays with just the id's instead of looping the threw those big objects? like this:

Code:
if (data.online)
var online_length = data.online.length;
else[code]..........

View 1 Replies View Related

Usage With Google Maps APIs

Jul 7, 2011

Working with two URLs:

Working: [url]

Trying to get to work: [url]

Issue: Received project from previous developer who left. The working URL generates a table chart using Javascript after you have entered a valid address/zip code. I haven't been able to determine why I can't get the "schoolfinder-business.asp" URL to generate a table chart using Javascript. I believe the issue is related to something in the function GetDirections, but I cannot pinpoint the issue.

View 1 Replies View Related

Get Script Documentation For Offline Usage?

Oct 15, 2010

Where can I get javascript documentation for offline usage?

View 1 Replies View Related

Any Good Examples Of Usage Of Document.elementfrompoint ?

Jul 23, 2005

What is meant by "element"?

When mouse is moved over "element" at x,y, is that "element" the entire
image or something else?

My thought would be to simply retrieve the thumbnail name or other ID and
use that to identify which large image to show.

Any reasons why NOT to use this property?

View 2 Replies View Related

Firefox Memory Usage Raises Exponently

Nov 22, 2009

My AJAX script runs fine on IE and Opera, but in firefox memory usage raises exponently (sript processes text, more text I use, more memory needed... when I use up to 1000 words, it takes 2 GB RAM on Firefox, while few mb on IE and Opera only).

Is there some way to track memory leak?

View 1 Replies View Related

Dynamically Cache Images For Offline Usage?

Dec 6, 2011

I have this web-app which can also be used offline. However, some content is dynamic (it depends on the user input). What I do now to have it accessible offline, is to store this content into localStorage. However, this works great for text, but what about images!

I've seen examples on the web where the base64 representation of the image-data is used, which is text and can be stored. But how do you get the Base64 of raw image data client-side ?

What would be the preferred way (Assume we don't have a File API) ?

View 5 Replies View Related

JQuery :: Usage Of .class.class Selector?

Dec 24, 2011

[URL] The above webpage lists the selector .class.class without an example. I can't find this usage in jQuery document either. I made the following example, but it doesn't work. Could anybody let me know who to use the .class.class selector?

<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>

[code]....

View 3 Replies View Related

JQuery :: Add All Callback To The Url?

Apr 19, 2011

i am relativly new to jquery and the$.getJSON method. two weeks ago i startet using$.getJSON with success.but now i have an inexplicable problem with using the function. i changed nothing in the behavior of using the method but getting now a different result. i am calling the function this way

var path = 'app.php?controller=kgr&task=savemod&action=new&tablename=kostengruppe
&start=5&kostengruppename=132&kostengruppenummer=546';
var jqxhr = $.getJSON(path, function() {
alert("success");

[Code]...

View 5 Replies View Related

JQuery :: CSS Selector With Query String In 1.5

Feb 3, 2011

refer to[URL]

In 1.4.4 thea[href=somepage.php?name=mike] lookup works 100%, but switch to 1.5 or jQuery WIP from the Include dropdown and the selector fails (PS. 'jQuery latest' in the dropdown still refers to 1.4.4 on Google's CDN).

View 3 Replies View Related

JQuery :: Get Data In Query String?

Dec 2, 2011

<a href="test.php?t=123" id="test">Table</a>
//// JavaScript Document
$(document).ready(function() {
$('#a').click(function() {

[Code].....

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved