0
votes
Href for Javascript links: “#” or “javascript:void(0)”?
Ideally you should have a real URL as fallback for non-JavaScript users.
If this doesn't make sense, use # as the href attribute. I don't like using the onc …
5
votes
Javascript menu remembering position
You can make the link/element that is clicked (for the onclick event) set the URL hash in the address bar. (i.e. http://server.name/page#URL …
0
votes
Anyone know a YUI-based Image Magnifier?
Have a look at this one:
http://www.julienlecomte.net/blog/2007/08/9/
Doesn't exactly do the same as that jQuery pl …
1
vote
Set default value for Search field - Please Help!
Sounds like you just need to set the initial value to Search, directly in the input tag, like so:
<input autocomplete="off" class="blank" id="searchq" name="searchq" …
4
votes
how do i write a javascript alert box to give a yes or no question and integrate with php calls? (repost)
You cannot use JavaScript to control the flow of PHP code in the way you've provided. The reason the record is always deleted is because the PHP interpreter kicks in as soon as it sees the &l …
1
vote
How do I get the contents of an <iframe> containing a different site?
What you are trying (in a sense) is cross-domain communication. This won't work in the normal way you've tried (due to the same-origin policy as noted by altCognito), but there are some solutions …
0
votes
How do I wrap a page element with a dynamically generated element using jQuery?
From the documentation, it appears that wrap() only accepts a DOM element or a string. You are passing it a jQuery object …
0
votes
loading image before switching div background in jquery
You could define a CSS class with the background-image property set to the image, and then in your updateImg() function, set the class of that div instead of directly modifying the property. This …
0
votes
JQuery/Javascript works on & off
Is it possible that you are linking to (some of) the script files using a src that points to a file on your local disk/HDD? If so, that would explain why it works only on your machine, as then only …
0
votes
How to Access iFrame Checkbox Elements
Not sure of your exact issue (could you provide more details?) but if the URL of the iframe src is not in the same domain as the parent, there could be cross-domain security issues that prevent man …
1
vote
Removing unwanted characters from textbox with JQuery
You can use the charCodeAt() method combined with the leng …
0
votes
Breaking out of a PrototypeJS .each() loop
Based on the documentation for .each() that you linked to, you should use a throw $break; statement, this should cause further iterations to cease.
Simply returnin …
2
votes
How to avoid internet explorer first button selection?
You need to disable the Enter key for those input elements to prevent form submission. Take a look at …
1
vote
jQuery.get() method doesn’t want to work
Try using something like this, to make the call when the DOM is ready.
<script type="text/javascript">
$(function()
{
$.get("http://www.walkscore.com/tile/show-tile.php?wsid=5 …
3
votes
Problem calling method inside another method in javascript?
I think the problem is that when this.C() is executed inside the function referred to by B, this refers to the object that contains B, that is, o …
