load

jQuery: Dynamic image handling (waiting for load)

I'm trying to write a plugin that has a built in function to wait until all images that are on the page to be loaded before it executes itself. $(window).load() only works if it's the initial load of the page, but if someone wants to pull down some HTML through AJAX that contains images, it doesn't work. Is there any good way of doing t...

Display a number on the screen Iphone SDK

does anyone know how to display a number on the screen/iphone simulator? I can load the data and create a x/y graph. Now instead of showing the graph, I load the data value from a text file, and I want to display the number on the screen. Does anyone know what function i can use? NSString *data =[myText objectAtIndex:i]; output_data_val...

jquery ajax call from link loaded with ajax

//deep linking $("document").ready(function(){ contM = $('#main-content'); contS = $('#second-content'); $(contM).hide(); $(contM).addClass('hidden'); $(contS).hide(); $(contS).addClass('hidden'); function loadURL(URL) { //console.log("loadURL: " + URL); $.ajax({ url: URL, ty...

IE is not loading all images

I have jQuery code that loads images with jQuery load method. It works perfectly in all other browsers, except in IE. I have about 10 images, but IE only loads few of those images and then stops loading. What could be causing this? $(".image-container").each(function() { ... some code here ... var img = $("img", this); $...

I don't know what to call it php/css error tho

whats going on is everything is loading just fine url is deigned.sytes.net except for the links when i click about us or services or contact they look like there loading but the content in body.tpl doesn't change from default. maybe you can help me with this why the links are not changing. you u want here are the ONLY php files I have ...

Jquery load() help

Hi. I am creating a portfolio page for m personal site. I have a slider with approx 20 anchors that link to projects I have worked on, each one contains a client logo that when clicked should load some html content then fade that content into a container div on the same page. I have been advised to use the JQuery method load() which see...

Tell The Program What To Do When No Save Data Is Found NSUserDefaults, iPhone

Hello all, I have saved data which was saved using NSUserDefaults. I was under the impression that if there was nothing saved to the key already (first time app is run) it would default to 0. This however doesn't seem to be the case. Here is what I have: To save: - (void)viewWillDisappear:(BOOL)animated { [[NSUserDefaults standardUser...

mpmovieplayercontroller sometimes has slow load time, what can be the reason? (iPhone)

mpmovieplayercontroller sometimes has slow load time, what can be the reason? thanks ...

$.ajax not loading data data everytime from server

I have written a simple jQuery.ajax function which loads a user control from the server on click of a button. The first time I click the button, it goes to the server and gets me the user control. But each subsequent click of the same button does not goes to the server to fetch me the user control. Since my user control fetches data fr...

how to load a page and then run a jquery function

on master page i put this code to load page in same master page and then run jqeury function This is my Master Page code <%@ Master Language="VB" CodeFile="MasterPage.master.vb" Inherits="MasterPage" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; <html x...

load Javascript object from file

Hi there, I asked a question in this thread Stackoverflow, and it works perfect. So tnx to all the users who gave me a reply. But now I have a other question. I would like to have the object in a seperate file, so I only need to update the file in stead of the JS file (otherwise it will be very big). I'm using JQUERY. I now looks like...

loading files through one file to hide locations

Hello all. Im currently doing a project in which my client does not want to location ( ie folder names and locations ) to be displayed. so I have done something like this: <link href="./?0000=css&0001=0001&0002=css" rel="stylesheet" type="text/css" /> <link href="./?0000=css&0001=0002&0002=css" rel="stylesheet" type="text/css" /> <scri...

jquery load event sometimes dont work, why?

hi! i use something like this $(img).bind('load',function(){ console.log('loaded'); }); and obviously it works, but when the page is loading images from cache the event isn't triggered. how can i fix this situation? ...

How to use the jquery .load() function to return the innerHTML of an element

JQuery Assume this works: $('table td').load('/my/url/ div p'); I would end up with <td><p>Some Text</p></td> I want to end up with <td>Some Text</td> How would I do that? ...

Loading a large list of sentences into a MySQL table

I have a large list of phrases / quotes / sentences in a text file. Mixed alphanumeric text, it hasn't been screened for "'s or ''s. Is there an easy way to throw this into a table? ...

Load html document in javascript from text

Hello everyone! Is it possible to load an html document into a DOM javascript object so that you can read the elements in the document? For example, if I have a file on the server Test.html. Can the page Hello.html call javascript code to load Test.html into a DOM object? Please let me know. Thanks ...

Website stress test in Python - Django

Hi folks, I'm trying to build a small stress test script to test how quickly a set of requests gets done. Need to measure speed for 100 requests. Problem is that I wouldn't know how to implement it, as it would require parallel url requests to be called. Any ideas? ...

iis6 - how find, what load it hights?

I have iis6 server. one site on its own pool. i see 90% load in task manager. site has big hits from internet. code is ok - its optimised very well. so, is there a method to see, what func or call load its hights? p.s.: log files are not so informative... ...

Open link in new window with Jquery

Hi. I am trying to open a few links in a new window using Jquery rather than _blank so my html remains valid. My code looks like this: $(document).ready(function() { $('a[id="external-url"]').click(function(){ $(this).attr('target','_blank'); }); }); This works just fine except when the link is contained within html I ...

UIImage - should be loaded with [UIImage imageNamed:@""] or not ?

Hello ! every one. I am having number of images with in my application. ( images more than 50 - approximately & it can extend according to client's need ) Each image are very large round about - 1024 x 768 & 150 dpi Now, I have to add all this images in a scroll view & display it. Ok, My question is as follows. According to me there...