1
vote
4answers
386 views
Google Maps Add a Marker to Map, then Store Latitude and Longitude in Ruby on Rails
I've had a look at the previous questions asked but i cannot quite seem to fit this in so here it is:
Basically, I have a Ruby on Rails project and i would like to have a page where the user pin …
3
votes
1answer
27 views
Can I put google map functions into a closure?
I am trying to write some google map functionlity and playing around with javascript closures with an aim to try organise and structure my code better.
I have the following code:
var gmapFn ={
…
6
votes
6answers
47 views
How can I show different content when JavaScript is disabled?
Hello,
I need to show COMPLETELY different content when JavaScript is disabled. I know I can use <noscript> tag... but how can I hide the rest of the page when JavaScript is disabled?
Thanks.
1
vote
4answers
74 views
Any nice looking or “WOW” effect looking for HTML select
Previously, I am using
<select size="8">
<option>Item 1</option>
<option>Item 2</option>
<option>Item 3</option>
<option>Item 4</option>
…
1
vote
1answer
8 views
How do I re-use components in ExtJS?
I have an ExtJS grid like so:
var grid = new Ext.grid.GridPanel({
...
});
I'd like to be able to re-use this grid so that I can have it multiple instances of it that all act independently. Is …
0
votes
3answers
38 views
In javascript, how do I call a class method from another method in the same class?
I have this:
var Test = new function() {
this.init = new function() {
alert("hello");
}
this.run = new function() {
// call init here
}
}
I want to call …
0
votes
3answers
22 views
regular expression to match specific text not linked
I would like to write a regular expression in javascript to match specific text, only when it is not part of an html link, i.e.
match <a href="/link/page1">match text</a>
would not be …
0
votes
2answers
26 views
Javascript Object Not Digging My PHP Var’s Value (Has HTML in It)
Hello,
I'm building a CMS for a client (Building on top of wordpress). I'm having an issue with some data I am returning from my database.
Basically I am building Javascript Objects from PHP data …
1
vote
3answers
20 views
How to keep an absolutely positioned element directly over the position of inline one?
This is a follow up question to http://stackoverflow.com/questions/2233097/how-can-i-stop-an-iframe-reloading-when-i-change-its-position-in-the-dom if you want the background.
I have an inline div …
0
votes
1answer
12 views
Help with a `marquee` type effect with jQuery
I need to implement a marquee type effect.
I don't want to use the marquee element - non standard and deprecated and all that.
I have access to jQuery for this site.
I've seen a few plugins, but …
4
votes
5answers
29 views
How can I stop an IFrame reloading when I change it’s position in the DOM?
Is there any way to stop an Iframe re-loading it's contents when I change it's position within the DOM? Simple example:
<script type="text/javascript">
function moveiframe() {
var dest = …
0
votes
1answer
33 views
Detecting Hebrew words in document via JavaScript
Hi guys,
I'm a mostly-newbie when it comes to web development (though not to programming in general) so pardon any incorrect terminology.
I want to build a script that, when added to an HTML page, …
1
vote
0answers
11 views
Help with firing js in ajax page
What I'm trying to do:
I am using colorbox (http://colorpowered.com/colorbox/) load in an external page (http://www.rockchurch.com/messages/watch_me/the_prayer_of_agreement) via ajax. The page I'm …
1
vote
4answers
20 views
Jquery binding event.
<img id="sun" href="logo.jpg"/>
How do I use JQuery to bind it so that when "sun" gets clicked, something happens?
I just want bind onclick to sun.
1
vote
0answers
34 views
Javascript variable scope (cross site scripting)
I am writing a javascript widget. I am declaring some variables which will be pasted in the host page.
the script to be pasted into pages looks something like this
<script …
