Once: The code or operation is meant to fire only one time, typically only on the first execution. This tag can be useful because otherwise searching on "once" is all but useless. But, the search term "[once]" will restrict to only those questions where one-time operation is a key point (and ...
20
votes
5answers
53k views
How to refresh/reload page once using jQuery?
Newbie question: I'm wondering how to refresh/reload a page (or even specific div) once(!) using jQuery? Ideally in a way right after the "DOM structure" is available (cf. "onload" event) and not ...
6
votes
2answers
2k views
jQuery - Do only once
I want to check if an element has the class .active, if it does add: margin-top: 4px;
However I only want this to occur once, when the page loads, once the class has been detected dont detect it ...
5
votes
3answers
818 views
Javascript: Div Only display once
So i want to do look a like stackoverflow with the message at the top.
Now i have all configured and such, but i got one problem.. The message only displays 1st time, second time it doesnt appear.
...
3
votes
2answers
3k views
jQuery click event on image only fires once
I created a view of thumbnails. When the user clicks, I want the real image to pop-up in a dialog. That works the first time, but once the jQuery 'click' fires on an thumbnail it never fires again ...
2
votes
2answers
197 views
jquery live once: how to avoid multiple occurrences on an object
I can never get this right - how to avoid multiple occurrences on an object. For instance, I have this function where you can click a link (go to the top), then the document will be scrolled up to the ...
2
votes
3answers
208 views
Windows Task Scheduler will run app only once
So my situation is that I am running an app on the Windows Task Scheduler. This app is run once a day at 1pm. the app does some queries and transfers data to an FTP site. All that is working great ...
1
vote
3answers
44 views
PHP: Know if instantiation came from static method?
Say I have a class like this:
class Person
{
private $value;
public function __construct()
{
$this->value = 'new';
}
public static function find( $ident )
{
...
1
vote
2answers
84 views
Prolog - subtract each item only once
when I use prolog's built-in predicate "subtract/3" : subtract(+Set, +Delete, -Result) in for example:
subtract([a,b,c,d,c,c,d,e], [c,a], X).
X = [b, d, d, e].
but I want to subtract each ...
1
vote
1answer
60 views
How do you use a require_once header for items in a different folder?
I use require_once("header.php"); for all pages of my website. Though, I feel like I can only use that code for files filed directly under the public_html folder. If I use the ...
1
vote
1answer
252 views
Android CORS requests work only once?
When testing CORS requests under the Android emulator, I stumbled upon a strange error. Try for example following website: http://arunranga.com/examples/access-control/
When using a CORS request for ...
1
vote
1answer
1k views
auto fill form and submit
I have a form on my 404 page that is auto filled with the address the user tried to find. I also have javascript that then auto submits that form.
The problem is, once it auto submits it keeps ...
1
vote
1answer
643 views
XNA Fighting Game Style Animation Looping Problem
I've been working on this for quite some time looking for solutions in various places. I've used Nick Gravelyn's style of storing animations into a text file and am simply incrementing an index to ...
0
votes
0answers
34 views
Ajax symfony 2, multiple execution of request
I have a problem with ajax requests. When I launch my request, I analyzed with firebug that the application is executed several times, how can I ensure that it executes only once?
0
votes
0answers
14 views
SSH 1 time to run multiple grep commands and set values to array
I currently have a script where I ssh to two hosts and grep out values and report them back to an array and print them out on a screen.
However, I am having to put in my password 60 times over 30 ...
0
votes
1answer
23 views
How do I use .one() handler correctly?
I want to insert a div element after a given element. How do I do it ONCE ?
This is what I have:
var i = 1;
$('<div id="plussign"></div>').one("insertAfter","#div" + i);
0
votes
1answer
73 views
Showing the setup screen only on first launch in android
I am making an android application but i can't figure out how i can make the setup screen show up only the first time.
This is how the application is going to work:
User launches the application after ...
0
votes
0answers
32 views
jquery .clone() multiplies
I'm having this odd problem, I just tried to make a normal .clone().
But when I try to .clone() it again it multiplies!
$('.module').live('mouseup',function(e){
tree.clone(this, e);
});
And ...
0
votes
2answers
192 views
How to show splash screen only when the app starts “fresh”?
I want to show the splash screen only once during the Application life cycle. Here is my code:
SplashScreenActivity.java:
final int welcomeScreenDisplay = 3000;
Thread ...
0
votes
0answers
11 views
id should work for one div
I need a little help.I am working on blogger.I made different sidebar in every post.Sidebar contain menu according to post.But when I added search engine the search result shows (off course it will ...
0
votes
0answers
27 views
Click once application install with new assembly identity
We have created a click once application using VS 2008.
I would like to have 2 unique installations of the same application, one which is a TEST application and one which is a LIVE application.
...
0
votes
1answer
93 views
Wordpress (make the_author only echo once in the loop)
basically I have my site setup to display the title of each page/post in the header of my theme. I also have it setup to display the name of an author on my author pages(I did this using a ...
0
votes
2answers
74 views
println a sentence once in Processing
I'm wondering how to println a sentence ONCE in Processing. when I type println("Hello World!"); it just shows lots of Hello World! sentences. I know how to fix it with keyPressed (when the key is ...
0
votes
1answer
89 views
Is there a way to click a link only once using greasemonkey?
Is there a way to click a link only once using Greasemonkey?
Script is (e.g.):
var evt = document.createEvent ("HTMLEvents");
evt.initEvent ("click", true, true);
...
0
votes
1answer
159 views
Stop jquery from repeating, example attached
I have to attach a jqeury to an invoice. Sometimes I have to print multiple invoices as once in a batch. When this happens my exact same jquery appears for every invoice and it runs each time creating ...
0
votes
2answers
335 views
Require once not working in php script
I am making a wordpress plugin and i am having a little issue with this paragraph of code. For some reason
echo "<table style='border:solid 1px #000000;'>
<tr>
<td ...
0
votes
3answers
47 views
How can I implement a 1-time feature on an app? (Android)
I want to put a prompt into an app about requirements for it and such, but I only want this to show up the first time the app is opened. The only reason why I know it is possible is because I have ...
0
votes
2answers
1k views
Refresh PHP page once only when called
I have a php which would check for certain value if it exists in a mysql database. If the value does not exists, it would simply add the value and refresh the page once to load the page again and now ...
-1
votes
3answers
39 views
Once bind with live func
How can i once bind click with live function?
So i tried:
$('.expansion_button').die('click', function(){
$('.expansion_button').live('click', expansion);
});
But this, twice bind click after ...
-2
votes
2answers
138 views
php require once connect to other website
I'm trying to get my visitor when they visit my site to auto connect to the other site once
I did put this
<?php require_once("http://webtoconnect.com"); ?>
but I guess this code wouldn't ...
-2
votes
1answer
145 views
Stop jquery from repeating [closed]
Possible Duplicate:
Stop jquery from repeating, example attached
I have to attach a jqeury to an invoice. Sometimes I have to print multiple invoices as once in a batch. When this happens ...