Tagged Questions
The firing tag has no wiki summary.
4
votes
3answers
1k views
jQuery: textbox keyup firing twice
i'm having a textbox and assigned the following function (it's the only function assigned):
txt.bind("keyup",function(event){
if(event.keyCode==13)
{
var nu = $("#debug").html();
...
3
votes
2answers
1k views
input textbox onchange is not firing when data is assigned to input textbox
this is my html page
<script>
function set()
{
document.getElementById("txt").value++;
}
</script>
<input id="txt" type="text" onchange="javascript:alert('txt changed');" value="0">
...
3
votes
5answers
3k views
jquery js how to avoid massive onmouseover onmouseout firing
i have a table with some columns. in each of them is a picture where i have a onmouseover onmouseout event on it, which show a message in a div and hide the msg.
my problem is - after a user goes ...
2
votes
4answers
139 views
Have a script fire after another script?
I am using two scripts that fire at the same time. They seem to cause a conflict. The question I have is how can I get one to fire a half a second to a second after the other fires? I think that might ...
2
votes
2answers
389 views
ObjectdataSource Inserting event not firing up?
Hi I have an objectDataSource and i am trying to pass an object as parameter in its
Inserting event. For some reason the "Inserting" is not getting fired up before Insert is called.
It is not getting ...
1
vote
5answers
62 views
Basic PHP request firing
I'm currently trying to teach myself the basics of PHP and seem to me mucking along alright. I've come across one tutorial that basically describes how to make a blog. I understand every single part ...
1
vote
3answers
376 views
collision detection of cannon balls with wall and target
I am seeking a good algorithm detecting if a moving ball is touching either a static wall or a static target. A classic Firing game logic. Anyone seen a good algorithm other than just loop them all?
...
1
vote
1answer
226 views
Programatically firing an event in GTK (With Gtk2Hs)
I am using Gtk2Hs (EventM module) to handle GTK events within Haskell. Is it possible to manually (re-)fire an event?
Upon detecting an event on one widget, I want to refire this event on another ...
0
votes
1answer
249 views
Sencha touch -> Scrolling x-y coordiate event activating
I have a small query with regards to Sencha Touch. i am trying to program some code which has an event kickstart as you scroll down the main panel (The end ideal experiment I am trying to achieve is ...
0
votes
0answers
202 views
combobox selectionchange firing multiple times & selected index does not change to zero
I have 2 comboboxes that has selectionchanged event and it is firing multiple times like 7 times and it is kinda of getting performance issues. Why does this happen and how do I Improve my code. Also, ...
0
votes
3answers
206 views
Javascript double event firing unwanted
I want to perfom the same action for 2 different events firing. The problem I have is that one of the event fire the other. I'm using javascript and Mootools, also events are set on an 'input' ...