You just have to add another variableslide entries here:
variableslide[0]=['ball.gif', '', '']
variableslide[1]=['spaceship.gif', 'http://www.space.com', 'Has aliens landed on earth? You...
Type: Posts; User: rangana; Keyword(s):
You just have to add another variableslide entries here:
variableslide[0]=['ball.gif', '', '']
variableslide[1]=['spaceship.gif', 'http://www.space.com', 'Has aliens landed on earth? You...
Do a CTRL + F5. It works pefectly now:
http://staging.awp2008.com/formservices.com/
On menu.js, remove the defaultExpanded setting:
defaultexpanded: [0], //index of content(s) open by default [index1, index2, etc]. [] denotes no content
Please apply these changes:
function enableDisableSend(oFld){
document.getElementById('send').disabled = (oFld.value == "") ? true : false;
}
<input type="submit" name="send" id="send"...
This should work:
function nextImage() {
var cache='';
cache = cache==''?current+':'+total_images:cache;
if(current < total_images)
$links.eq(current+1).trigger('click');
if(cache ==...
Try modifying your nextImage() function to:
function nextImage(){
var tmp = 0;
if(current < total_images){ tmp = current+1; }
current = tmp;
$links.eq(tmp).trigger('click');
}
On about.html:
ddtabmenu.definemenu("ddtabs1", 0, {'id' : '6', 'className' : 'orange'})
You were using ddtabs2 BTW.
Please provide a link to the page or zip it here for further debugging.
This would be easiest then... on your initialization, set a new object like:
ddtabmenu.definemenu("ddtabs1", 0, {'id' : '6', 'className' : 'orange'})
...and on ddtabmenu.js, add the...
Please revert back to the original ddtabmenu.js. Here's a quick hack on getting what you desire:
showsubmenu:function(tabid, targetitem) {
var menuitems=this[tabid+"-menuitems"]...
I think he had observed that DD Admin. I guess he want to keep the state "on" while hovering over the other links.
Go to ddtabmenu.js and add highlighted:
showsubmenu:function(tabid, targetitem){
var menuitems=this[tabid+"-menuitems"]
this.clearrevert2default(tabid)
for (i=0; i<menuitems.length; i++){...
It might be best to point you into the right direction.
First, date("l"); in your script gets the date's day in a full textual representation of the day of the week. So if today is Tuesday (based...
Hi tauhui ,
Good day!
Let me start this off by highlighting to you that these are wrong:
float="left" margin-left="auto" margin-right="auto"
float="right"
My apologies if I missed your point but there's no good in you being sarcastic when you're asking for assistance.
Anyway, please read the specs. It's mentioned there:...
Attached
I'm on Firefox 7 and it works fine.
A link to the page that exhibits the problem please or zip it here. It's most likely CSS-related.
Please show us a link to your page that exhibits the issue or zip it here. It's important to see how you're setting the JS and CSS as it's most likely that the error is that the script failed to...
...I assume you're talking server-side. The answer to that is YES. You can include the script and the files related to it on the header by using your favorite server-side language.
For PHP, it's...
Place this on the very top:
Redirect 301 /old-folder/ http://www.site.com/new-folder/or_path_to_file.ext
Hi Andy,
Good day!
For your issue, it's best for us to see the page where the problem is reproducible so we could try to debug from there.
Secondly, the other paramaters apart from the...
Use:
RedirectMatch 301 ^/old-folder/(.*)$ http://www.site.com/new-folder/$1
Please show us the link to your page.
You have this:
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">
Please ensure that the highlighted is on the root directory of where you're running your script. If incase...