Tagged Questions
6
votes
1answer
178 views
How does JavaScript store null values internally?
I always wondered how JavaScript stores null values internally. null is different than any value. I imagine that the scope's variables are stored in some kind of array of structures, each structure ...
2
votes
2answers
122 views
How to obtain more information from Ajax call to PHP file failure?
I moved my website on a server in order to go live, but I am getting an issue with an Ajax call to a PHP file designed to return a text value. I am trying to find what the bug is. The code works on my ...
1
vote
4answers
851 views
Have javascript make a list of all internal href=#'s on a page
Is there a way to have javascript make an array of all the internal href=#'s on a page?
The idea is to have a drop down menu that would contain links to all anchors on a page.
0
votes
0answers
55 views
image loading issue IE javascript
I have a requirement where i need to populate the image URLs from Java and send it to screen as list.
in the screen sometimes the images are not loading properly.
I used Img tag and src attribute ...
0
votes
1answer
65 views
Internal storage [closed]
I'm a new kid programmer i have finished hello world too but my dad wants me to make the object Cat remember what it said last but i don't know were to start Help!
-3
votes
2answers
75 views
JQuery Internal does not work [closed]
This is my javascript code
$(this).find('a:internal:not(.no-ajaxy)').on('click',function(evt) {
evt.preventDefault();
History.pushState(null, $(this).text(), $(this).attr('href'));
...
-3
votes
1answer
108 views
Where to place Internal JS and External JS in HTML page
I have used internal JS(on page) in my page which I write for my coding purpose. Along with it I use External JS too. I do use of External JS in my Internal JS(on page). It works fine when I place ...