Replace Panorama In Script?
Apr 2, 2011
I'm trying to create a sample portfolio (this is a project for a class I'm taking on Web design). This will ultimately be a photographer's portfolio, and I have one section that includes panoramas. I've got a page set up where the visitor can scroll through the panorama using arrows. But I also have thumbnails on that page that I would like to link to different panorama images.[code]...
View 14 Replies
ADVERTISEMENT
Dec 4, 2011
Recently I have added a Panorama onto my about us page on my website. I have linked all the js files correctly and everything works fine on google chrome, firefox and ipad,iphone,ipod,ect. (safari) But not on IE. I have version 9 and the website states it works with IE 6+. I need to know if anyone else has this problem and what can i do about it?
View 1 Replies
View Related
Aug 26, 2010
With the method "getLinks()" in streetview I can get linked streets of the current panorama. The data includes streetname, direction and panorama IDs of the next panoramas. But I need the position latlng. How can I get the position to these IDs?. I want to calculate all distances to next panoramas. Calculation is no problem.
View 4 Replies
View Related
Jul 27, 2010
Here is my code:
<script type="text/javascript">
var str="Welcome to Microsoft! Microsoft Microsoft";
var stringToBeFound = 'Microsoft'
var ReplaceString = 'site'
document.write(str.replace(stringToBeFound , ReplaceString ));
</script>
My problem is im trying to use string.replace that is not case sensitive and replace every string found. I could use regular expression with it but my stringToBeFound is a dynamic variable im getting it from my database
View 9 Replies
View Related
Dec 20, 2009
i am trying to make an online graphing calculator with javascript. dont ask how because i dont know. but there is an annoying error in a do...while loop. although it should break out of the loop when the |'s (absolute value signs) are replaced with Math.abs( and ). here is the code.
var initec = function(){
var rg = {
}
[code]....
View 9 Replies
View Related
Aug 19, 2010
I ran into a problem that I could not fix myself, I am trying to replace a string with another string, the replace lines look like this:
Code:
var word = document.getElementById("word").innerHTML; document.getElementById("word").innerHTML = wordd.replace(/B/g, '<span class="style106">B</span><span class="style107"> </span>'); It works just perfectly if left alone, but I need to replace every letter inside this string, adding those style and span tags around each and every letter. So if I add another line to this code, like this:
[Code]...
View 5 Replies
View Related
Jun 30, 2010
Is is possible to strip out some legacy <br> tags and replace them with </p><p>? A line break after the closing para would also be nice. And, can I target the asterisk and following space (see below) and delete it?
I've had a look at jQuery and managed to replace the br with p tags but they're the wrong way round i.e. open then close as it just manipulates the DOM not my string.
The current code/text is supplied from a database I don't have access to and the client doesn't have the time (nor the inclination I would suspect) to amend it.
Old existing code:
<p>blah blah blah<br>* blah blah blah<br>* blah blah blah<br>* blah blah blah</p>
New code wanted:
<p>blah blah blah</p>
<p>blah blah blah</p>
<p>blah blah blah</p>
<p>blah blah blah</p>
View 4 Replies
View Related
Aug 6, 2010
I'm looking for a very simple script to replace one div with another. I've found a few but they seem overly complicated with features I don't need. I simply want to be able to click on a div and for it to be replaced with another div previously hidden.
View 12 Replies
View Related
Nov 14, 2007
I'm trying to convert comma's with dots.
For example if: IS_Attr_OMZETINTERN.value="250,00";
then the result should be:
IS_Attr_OMZETINTERN.value="250.00";
However my code seems to fail on the second line of my code :S
var str = IS_Attr_OMZETINTERN.value;
var str2 = str.replace(',','.');
IS_Attr_OMZETINTERN.value=str2;
View 2 Replies
View Related
May 27, 2009
How to replace the with \ for e.g:MEG20070500025612;
View 7 Replies
View Related
Jul 23, 2005
I've got a simple navigation system set up in a framed site:
navigation/top frame and a main body frame. Whenever you click on a
navigation button it passes the new location to this function:
gotoNewPage = function(loc) {
main.location.replace(loc);
// alert(loc);
}
which changes the page loaded in the main frame. This seems to work well
until I put a link in the page in the main frame, say:
<a href="#" onclick="top.gotoNewPage(Ƈ_7.htm')">Click me</a>
In IE the page changes to Ƈ.7.htm'.
In FF (and MZ) the page "flashes" but doesn't change.
If I uncomment the alert the page changes.
If I put the link in the nav frame the page changes in FF.
How can I get FF to behave in this instance?
View 1 Replies
View Related
Feb 20, 2006
I want to replace all occurences of this ),( in my string with a comma .....
statement=statement.replace("),(",",");
This only does the first. I've been reading about adding "/g", but haven't
got it to work. I've messed about with no luck. Any quick pointers?
View 2 Replies
View Related
Apr 13, 2006
I see the use of Javascript replace all over the web. What are all the
character sequences? (sorry I am a bit of a newbie at this).
i.value.replace(/[^d]+/g, '');
I understand that /g is global and /i is case sensitive, but what are
the rest? I am asking because I am trying to write a function that
takes an input and replaces everything but numbers and a . (for decimal
numbers).
View 3 Replies
View Related
Oct 16, 2006
I am creating a "Please wait..." page to show a friendly message to my
site users while the data is being loaded. I am using
location.replace() javascript function to do this.
The problem that I am facing is displaying the records that the
application has already processed on the wait page. Does anybody know
what can I do to pass data field value from the end page where the data
processing is going in background on to the wait page.
View 5 Replies
View Related
Nov 13, 2006
I found this in one of my old scripts but I can't remember what the -0 was used for. I remember it was a shortcut method but I can't remember for what. Does this ring a bell with anyone?
var Pattern = /px/;
var T = paddingArry[0].replace(Pattern, "")-0;
View 5 Replies
View Related
Dec 18, 2006
I have a question about manipulating a document. Suppose for example
that I had a table like this:
<table>
<tr id="row1">
<td>R1C1</td>
</tr>
<tr>
<td>R2C1</td>
</tr>
</table>
What I want to do is add an onclick event handler to row1 to insert a
row after row1. I can't seem to find a way to do it though. After
creating the new row node, I could try something like
document.getElementById("row1").parentNode.appendChild(newNode) but
that would add the new row to the bottom of the table. The
insertBefore() method is the right idea but I want to insert the new
row AFTER row1 and there doesn't seem to be an insertAfter() method.
I thought about navigating through the DOM tree to get the row after
row1 and then using insertBefore() but the table is generated
dynamically and there won't necessarily be a next row.
View 18 Replies
View Related
Apr 4, 2007
I was tring to write a function to make that took the letters that a
user is searching for and making the first occurrence of it bold in
the results (ignoring the case).
>From reading javascript books and looking at posts in this group, I
thought this would work. Perhaps I misunderstood what $1 is. But in
the results, I am getting a bold $1 with IE6.
How can I determine what the occurrence of the phrase is in the
correct case?
I realize I can write this parsing the string without regular
expressions but I thought this would be cleaner.
var match = new RegExp( escapeCharsForRegExp(typedLetters), "i");
if (match.test(text))
{
text = text.replace(match, '<b>' + '$1' + '</b>' );
}
View 2 Replies
View Related
Jul 20, 2005
Three questions
1)
I have a string function that works perfectly but according to W3C.org
web site is syntactically flawed because it contains the characters </
in sequence. So how am I supposed to write this function?
String.replace(/</g,'<');
2)
While I'm on the subject, anyone know why they implemented replace using
a slash delimiter instead of quotes? I know it's how it's done in Perl
but why is it done that way?
3)
One last regexp question:
is it possible to do something like this:
String.replace(/<(.*?)>(.*?)</$1>/ig,'<$1>$2</$1>');
This is just an example where a sub-match used in a regular expression
must sub-match again exactly as it did the first time later in the same
string. But I don't know how to do that in a regexp although it seems
like it should be possible.
View 4 Replies
View Related
Mar 5, 2009
What's the best way to search all visible text on a page and do a find eplace on a string?
I've seen all sorts of ways to do it by tag type or ID... but I want to scan the entire page.
View 3 Replies
View Related
Aug 21, 2010
I have this string:
I want to make it:
so I tried
The problem is with identifying the � as opposed to '.
View 8 Replies
View Related
Apr 16, 2011
Basically the php gives the javascript a list of movies located in my directory, I am able to successfully launch any movie not containing a "space." I changed the code a little bit to allow for a "text input" and manually typed the name of a movie with %20 instead of a space and it worked. So I would like to modify the above code to do this automatically without visibly changing the movie titles. I am not sure where I should change the code.
View 13 Replies
View Related
Jan 13, 2007
I'm trying to write a script to grab the current URL if on the desired site (using Greasemonkey, a Firefox extension) and replace a variable inside the URL (example: site.com/file.php?a=a&b=target&c=c) with the variable embed inside my script.
Can anyone lead me in the write direction, or know a similar script which I could study from and sculpture the concept?
View 1 Replies
View Related
Aug 2, 2011
I've been working on a feature for my site, Gaming Cell, and I can't quite figure it out.
What I want the script to do: When you click the image, the image will disappear and the flash game will appear.
What's actually happening is: You click the image and the flash game appears UNDER the image and the image stays where it is.
Here's my code:
And here's a live demo: [url]
View 4 Replies
View Related
Oct 7, 2009
I'm trying to create a text-only version of one of my sites. I have a toggle link switching between text and full html versions. If text-only was selected, then it changes the stylesheet.However, I need to be able to replace all <img> tags with their associated alt attributes to make it completely text-only.
View 3 Replies
View Related
Jul 13, 2007
I want to replace a string after checking it is valid by passing the values to a function.
The string is '<img width="300" height="300">'
Code:
var text = '<img width=300 height=300>'
text = text.replace(/<img width=(.*?) height=(.*?)>/gi, check_img($1, $2));
The $1 and $2 values are not being passed to the function.
This same method works in PHP by the e Modifier but not in JS.
View 2 Replies
View Related
May 29, 2002
i only know two things about the image:
1. the source url (it is unique for the document)
2. its position in the document. ie: it is the eleventh image in the document.
how would i go about swapping the image with another one? i would like this to work in ie5.5+ and ns6+.
View 1 Replies
View Related