Replacing Element / Doc Write From Regex
Apr 23, 2010
var bakaBanner;
bakaBanner = document.getElementById('head');
if (bakaBanner) {
var str=//images/banners/[A-Za-z0-9_]+.[a-z]+/;
document.write(str.replace(//images/banners/[A-Za-z0-9_]+.[a-z]+/, "http://img218.imageshack.us/img218/5904/revyblacklagoon1.png"));
}
Alright, here's the deal... This is a script to be used in Greasemonkey. The page this is for changes their banner every 5 minutes, the name changes and it could be either jpg or png.
I'm fairly certain my regex itself:
/images/banners/[A-Za-z0-9_]+.[a-z]+
Is correct... Here's an example of what it's looking through:
<div id="head" style="background-image: url(/images/banners/kiminitodoke.jpg);" >
<div id="header_left">
<div id="rss">
My guess is that it has something to do with this line:
document.write(str.replace(//images/banners/[A-Za-z0-9_]+.[a-z]+/, "http://img218.imageshack.us/img218/5904/revyblacklagoon1.png"));
View 3 Replies
ADVERTISEMENT
Mar 20, 2011
I was trying to do something similar to code highlighting but can't find a good way to do it. For example lets take this code:
def some_function():
something()
somethingElse()
def some_other_function():
something2()
somethingElse2()
[Code]...
View 3 Replies
View Related
Jan 3, 2007
I am trying to parse a HTML page and want to replace the input element The following code fails all the time.
var ex = "<input type="hidden" name="__VIEWSTATE"
id="__VIEWSTATE"
value="/wEPDwULLTE2NjEyNTI0MThkGAEFEHNlY3Rpb25zR3JpZFZpZXc PZ2QN271==
/>";
var regEx = new RegExp("<s*input[^>]*>(.*?)s*/");
if (ex.match( regEx))
{
alert('match');
}
else
{
alert ('no match');
}
View 1 Replies
View Related
Apr 14, 2010
I'm trying to change content depending on the <a> link the user clicks. My code is far is as follows but isn't working?
HTML
<div id="content">
<div id="cx300">
<div class="auriculares_spec_mx560">
<h2>cx300</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec luctus varius magna.</p>
</div>
<img class="img_cx300" src="img/cx300.jpg" alt="Sennheiser Headphones CX300"/> .....
View 3 Replies
View Related
Mar 15, 2010
I'm trying to simply replace a certain string from the contents of an element, I tried this:
<div id="errorCont">Microsoft and Apple</div>
var ErrorContText=$("#errorCont").html();
ErrorContText=ErrorContText.replace("Apple","No one");
$("#errorCont").html(ErrorContText);
So the div SHOULD now say "Microsoft and No one", but it's not working.
View 4 Replies
View Related
Apr 21, 2010
I need to write to certain element on web page through some kind of absolute path access.
Example structure code...
View 7 Replies
View Related
Dec 20, 2000
When users goes to my page (main window) and click on a link, it pops up a new window, and that window contains more links.
When users click on the links on the popped up page, i want some text to be added into a textbox on the main window.
so like if the textbox has "Text1"
and when user clicks on that link, the textbox will now have: "Text1 link.."
View 1 Replies
View Related
May 10, 2011
I'm using php to write nested div's to a page. The div's display depending on a condition
[Code]...
then display using block, inline-block, table, inline-table, and still the inner element div or table will not display.
View 4 Replies
View Related
Jul 27, 2010
I am totally new to jQuery and no good knowledge on javascript. However, I was assigned a task, to convert a javascript program to jQuery due to compatibility problem on browsers like Chrome and Safari. My program originally use javascript xmlDoc.load('....') to read XML file, and then use document.write statement to write html tables on client side. Something like this (the sample below may got lots of syntax problem as I jut want to show the major part):
Code:
document.write('<TABLE >');
var y=x[0].getElementsByTagName('NoOfRows');
for (i=0; i<=noofrows-1 && i<=y.length-1; i++){
document.write(' <TD>');
document.write(z[j].getElementsByTagName('RecordDetails')[0].childNodes[0].nodeValue;
}
Now I changed to use jQuery, I can read the XML file elements. However, when I try to write the table, it failed:
[Code]...
View 1 Replies
View Related
Aug 5, 2002
Why doesn't this work? The input field doesn't show up at all. I know I'm just missing something really simple here.
<script type="text/javascript">
day = day.getDay()+1;
month = day.getMonth()+1;
year = day.getYear();
newdate= month + '/' + day + '/' + year;
document.write('<INPUT name=Date value='+ newdate + '>');
</script>
View 2 Replies
View Related
Mar 24, 2011
I have a client that has ads on her website that really slow down the site. These ads are called by an off site javascript file and I want to use a jQuery(document).ready or similar method to call these files after all of the site content has loaded. But these files contain document.write functions to add more javascript files. Since I want to load the files after everything else has loaded, this in turn makes the page blank and then loads the ad. Is there a way to position where document.write will write to?
View 1 Replies
View Related
Mar 6, 2004
I'm pretty new to JavaScript and am having a problem. I thought what I am doing should work but it isn't.
Basically I have a form that people can put a quantity into. e.g. A, B, C.
I have a JavaScript function called comput that assigns values e.g. A = 5, B = 7, C = 9. Here is the start of the script:
<script language="JavaScript"><!--
function compute(form){
var A = form.A.value * 5;
var B = form.B.value * 7;
var C = form.C.value * 9;
I then declare a variable to add them up:
var ans = A+B+C;
return;
}
</script>
This part of the script works fine. Now I want to write the ans variable. So I use:
<script>
<!--
document.write ("Your total is "+ans+"")
// --></script>
But it isn't working. Any ideas?
View 3 Replies
View Related
Oct 4, 2010
i have a menu generated by a list with nested lists. i want the parent link to stay highlighted when the mouse hovers over the sub menus. because those sub menus are also generated by jquery (qtip), CSS alone won't do it (triedul.topnav li:hover a {background-color: #F00;}).is there a way to do this using jquery?
View 15 Replies
View Related
Jul 23, 2005
I have a function which validates the password if there is a number:
-------------------------------------------------
function findNumeric(str_obj){
regEx = /d/;
if (str_obj.match(regEx))
return true;
else
return false;
}
--------------------------------------------------
The problem arises when I put a password with a space in between e.g:
'test test1'. The fucntion returns false. I've tried 's' in the
regEx but the user can put the space anywhere..
Any idea how to solve this problem as I should be able to put any
alplanumeric value into the password, including space.
View 6 Replies
View Related
Jul 23, 2005
I have a variable named "acct". I first want to remove any "-" characters
from it's value. After this I want to verify that we have only exactly 12
digits in the variable.
Unfortunately I'm pretty green as far as using RegEx.
/d{12}/.test(acct); should do the second part, but how do I do the first?
View 4 Replies
View Related
Jan 9, 2006
Basically i want to get the current url, and then replace http:// with
something else.
Here is the current code.
var current_url = window.document.location;
var re = new RegExp("http://", "g");
if(re.test(current_url)) {
me = current_url.replace(re,"http://www.addme.com/");
window.alert("found :: " + me + " :: " + current_url);
} else {
window.alert("not");}
if my page was http://ww.google.com 'd get the alert to be:
found :: undefined :: http://www.google.com.
I dont understand why i am getting undefined. When re.test() works.
surely that means the regex is correct.
View 14 Replies
View Related
Jun 15, 2006
Trying to match the entire following object literal code using a RegEx.
var Punctuators = { '{' : 'LeftCurly', '}' : 'RightCurly' }
Variations on the idea of using /var.*{.*}/ of course stops at the
first }.
View 7 Replies
View Related
May 9, 2007
I was using the following code:
element.value = element.value.replace(/ /g,'');
to remove all the spaces in a string.
However in IE6 it complained with and "Expected ')'" error.
How can I tell IE6 to replace just spaces (i.e. not using s)?
I tried / / and /[ ]/ but neither of them worked either.
View 13 Replies
View Related
May 18, 2007
I need to strip everything from a file except what is between <body>
and </body>
View 2 Replies
View Related
Oct 13, 2009
ok heres a regex
/^(?=.*d)(?=.*[A-Z])(?=.*[a-z]).{8,16}$/
which checks I have at least one lowercase letter, one uppercase letter and one number and the string is between 8 and 16 characters.I have adapted this from another source and it works as intended on all browsers but not IE7 or IE6 (oh microsoft why do you make my life so hard)This works fine in all other browsers (IE8 is fine) but doesnt work in IE6 or IE7
View 1 Replies
View Related
Oct 23, 2005
I'm writing an ECMAScript tokeniser and parser and trying to find out if I can eliminate the switching from tokenising "/" as start of regex or the division operator depending on the parser feedback - essentially, if I can make the tokeniser independent of the parser. (I have a gut feeling this needs too much special casing to be worth it). Code:
View 2 Replies
View Related
Jun 27, 2010
I have been playing with this regex for a few hours now I want to make it so it accepts commas also.
At the moment it works with A-z and - . ' but can't seem to figure out how to include commas.
View 4 Replies
View Related
Jun 21, 2011
I have a bunch of text that I want to split into an array of sentences. I have the following code that works just fine on FF and Chromium, but ofc has to fail on the pile of *** that is IE [code]...
It does not produce any errors, but the resulting array often has empty strings as value instead of the sentences that should be there. how to do this in a way it also works on IE?
View 1 Replies
View Related
Oct 27, 2004
i have the following regex:
(s*{s*(<?)s*(>?)s*}s*)
this needs to be able to match a string and make the following replacements:
if the string matches without < or >, replace the match with a space, a replacement string, and another space. if < matches also, do not add the left space. if > matches, do not add the right space. if < and > match, do not add the beginning or ending space
Old {} String => Old Replacement String
Old {<} String => OldReplacement String
Old {>} String => Old ReplacementString
Old {<>} String => OldReplacementString
this will have to be done a LOT of times, so efficiency is very important the answer in php is below. can anyone help me figure out how to do it in javascript? PHP Code:
View 4 Replies
View Related
Dec 21, 2004
In have a string of data like so:
<div id="feedback">
<p>[DEC 12th Anthony]I like it[DEC 12th Anthony]I agree</p>
</div>
I'm trying to use regex to add a <br /> before each item in hard brackets so the comments are broken out. Here's what I've tried.
re = /(.*])/gi;
vTemp = aSourceObject.innerHTML.replace(re,"<br />$1");
What I end up getting is:
<div id="feedback">
<p><br />[DEC 12th Anthony]I like it[DEC 12th Anthony]I agree</p>
</div>
It gets it right, but only for the first item, not the second one. If I tell it to put the <br /> after then I get
<p>[DEC 12th Anthony]I like it[DEC 12th Anthony]<br />I agree</p>
So its like its reading the entire section in brackets as one match instead of 2 seperate matches..
View 2 Replies
View Related
Nov 15, 2006
I need information about javascript & regular expression.please suugest me any book or tutorial web site.
View 2 Replies
View Related