Monks:
Can you help me with a suggestion to have anything in a <script> tags deleted using a regex? I have tried this.
s/<script>(.*?)</script>//g;, but it didn't work. I thought the (.*?) is for anything.
Shed some light if you please,
<script>
function showCalendar( field ){
gfPop.fPopCalendar(top.document.all[ field ]);
}
var timer=null;
function timerCheck(field, checkbox){
clearTimeout(timer);
checkBox(top.document.all[field].value, checkbox);
timer=setTimeout("timerCheck('"+field+"', '"+checkbox+"');", 1000);
}
function selectShifts(time){
var i=0;
while (document.FilterForm.shifts.options[i]!=null){
if (document.FilterForm.shifts.options[i].value=="")
document.FilterForm.shifts.options[i].selected=false;
if (document.FilterForm.shifts.options[i].time==time)
document.FilterForm.shifts.options[i].selected=true;
i++;
}
checkBox("nonnull", 'useShifts');
}
function checkBox(value, checkbox){
if (value=="" || value==null)
document.FilterForm[checkbox].checked = false;
else
document.FilterForm[checkbox].checked = true;
}
function doNothing(){}
</script>
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.