twice

jQuery $.post fires twice?

I have this code, and for some reason my $.post function fires twice in quick succession (for 'journal/weather') according to Firebug. It still does this when I remove the "if (navigator.geolocation)", however, if I replace the $.post block with something like console.log('test'), it only fires once. What's even weirder is when I place...

jquery div append table twice

Hi all. Here is my code : <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" ; "http://www.w3.org/TR/html4/loose.dtd"&gt;&lt;html&gt; <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <script type="text/javascript" src="jquery-1.4.2.min.js"></script> </head> <body>...

Visual studio 2008 creates a additional bin\debug folder although I have no pre/post build events defined?

I have this structure: Projects |-bin |-Project1 |-Project2 .....|-crapBin When I build my solution from project1+2 all the built binaries goes into the bin. But additionally some binaries are also put into the crapBin folder although I have not set this path as output path of any project. Furthermore I have not defined any pre/post b...

CodeIgniter controllers being called twice.

It is entirely possible that I've made a huge mistake someplace, but for some reason, my controllers are being called twice. This is breaking DX_Auth's captcha's on Chrome, but somehow, Firefox and IE can handle it. The problem is, every controller is getting called twice milliseconds apart. I used log_message() to print every key/valu...

problem calling java function, only first finds matches.. close? reset? dispose?

I've got this java function that extracts strings from Inputstreams and returns a List. It uses java.util.Scanner and java.util.regex.Pattern. Problem is, it only seems to work the first time I call it. If I reverse my calls, again only the first one works, the second call never returns any matches. List lsphones = extract(is,pattern,0...

memory problem with perform selector - iphone

hello i got a problem and i don't know how to solve it. this is what i try to do: the user picks an image from his album on his iphone. while the image will be saved in the application folder, a actionsheet should popup with an activity indicator on it till the saving process is done. below you can see how i tried to do it, but i think ...

Javascript closing tag is echoed twice from php

<?php echo "<script type = 'text/javascript'></script>"; ?> output's page source shows this : <script type = 'text/javascript'></script></script> Why is it putting an extra closing tag ?? and who is putting it there ?? browser ? server ? who ? ...

Why this is executed twice?

I have code like this: $(document).ready(function() { $("div #covert, div #coverb").height($(window).height() / 2 + 1); $(window).resize(function() { $("div #covert, div #coverb").height($(window).height() / 2 + 1); covconcr(); }); function covconcr() { $('div #covercon').css('left', $(window).w...