Tagged Questions
7
votes
2answers
1k views
Cheat for hidden game “Atari Breakout” in Google Image Search
How would a cheat/auto moving paddle in this hidden html game look like?
There is a
<div id="breakout-ball"><span>●</span></div>
and a
<div ...
0
votes
1answer
22 views
JS event once element is added to DOM?
This is for debugging purposes so to find which part of code creates/modifies the element.
Is there a way to set up a breakpoint ir callback event once specified ID/CLASS element has been ...
-4
votes
0answers
39 views
why jquery focus event doesn't worked on firefox? [closed]
why this code doesn't worked on firefox?
it works on chrome and IE well...
$('#search-text').bind({
focus:function(){
$(this).animate(
{width: "300px"}, 600 );
}
})
-1
votes
1answer
22 views
Indent JS in firebug
My JavaScript is perfectly indented in eclipse. But, when I debug the same JavaScript code in firebug it is not. Not sure why and it makes it much harder to debug. How do I fix this?
-2
votes
0answers
23 views
Best way to debug Javascript conflict
There are some Javascript conflict in my website. What is a better way to debug? Using fire bug? But I didn't write my own functions. I just added a slider, js tab table etc. And I downloaded them ...
0
votes
0answers
8 views
Directive to suppress firebug warnings
I got some code here
try {
retValue = value.toString();
} catch (e) {
debug.log("value is null [Exception: " + e + "]", "courseGrid.format()", 6);
}
which is invoked in several iterations ...
0
votes
0answers
17 views
XML Parsing Error moz-nullexception firebug
I have seen this question before, but haven't been able to find an answer.
Basically, I am using EXT JS and using it to send a AJAX POST request to our webservice. Java, on the backend handles the ...
0
votes
1answer
27 views
loading a css style sheet through firebug console
Is there a way to load a style sheet through the firebug console? I know that the console is javascript but is there and extension that allows fire bug to load stylesheets?
1
vote
1answer
36 views
TypeError in Javascript console
I'm getting an error in my JavaScript console in Chrome
TypeError: Cannot call method 'xxx' of undefined
Firebug reports in Firefox;
TypeError: t is undefined
T and xxx are just examples.
The ...
-3
votes
0answers
65 views
what's wrong with this javascript code? [closed]
window.onload = function() {
var links = document.getElementById('subMenu').getElementsByTagName('a');
for(var i = 0; i < links.length; i++) {
links[i].onclick = function() {
...
3
votes
1answer
77 views
Javascript Conditionals: confusion with &&
I am unpacking some data gathered from a form and setting object properties. If the input was a text, I am storing the value. If it was a checkbox, I am storing the "checked" attribute. If it was a ...
2
votes
1answer
54 views
Can Firebug be more useful at debugging? Alternatives?
Figured out how to make my javascript work, but it took a really, really, really long time. Enough to make me wish to continue avoiding javascript. I started with a complex page, and kept reducing ...
-1
votes
0answers
51 views
Does jquery selector exist?
I have a codeigniter that uses twitter bootstrap. At the end of it I have a simple fade in script using jquery:
<script src="http://localhost/b1/js/jquery.js"></script>
<script>
...
0
votes
1answer
144 views
Extracting CSS Code in Firebug plugin [duplicate]
I'm not sure whether it is a right place to ask this question. I need to get the CSS that is generated by Firebug when we inspect a element. But after some research i couldn't able to extract the ...
1
vote
2answers
33 views
Finding the location of defined JavaScript using Firebug or alternative tool
I am attempting to locate where a particular class/function/object is defined on a site with many javascripts being rendered. Manually sifting through the scripts has proven to be very time consuming ...