Works good in FF, in IE6 the images appear, but when I mouse out the images stay, even when I mouse over the next preview.
IE6 images stay, need to have them go away on mouse out.
<style type="text/css">
/* =Hoverbox Code...
I want to submit information to an external client
The form is on
www.myurl.com
then
onsubmit
www.external.com?this=that
The external url is a lotus notes db
can't use a redirect back to my url
focus back to in the onsubmit
www.myurl.com
your email sent
Any Ideas??
Cant seem to get my query to run when the session times out.
When a person logs in I set their id to session.userid
Now when the session times out, I want to run this query
<cfquery datasource="#application.dsn#">
UPDATE Logger
SET therein = '0'
WHERE logerid = #session.userid#...
Cool thanks
This is what I ended up with
if (<cfloop query="theItems">
document.getElementById('#theItems.theVar#').checked
<cfif (theItems.CurrentRow NEQ theItems.RecordCount)>||</cfif>
</cfloop>) {
return true;
}
alert('You must check at least one item!');
return...
Ok maybe I am confusing myself - I just want to make sure one box is checked yes - this doesn't work either
<script language="javascript">
function validateform(){
if (
!document.getElementById('RegularBox').checked
||...
This is making me check all the checkboxs or none at all
can anyone help?
<script language="javascript">
function validateform(){
if (
document.getElementById('RegularBox').checked
||
document.getElementById('SeniorBox').checked
||...
This is the code I have
<script language="javascript">
function validateform(){
if (<cfloop query="theItems">!document.#theItems.theVar#.checked || </cfloop>){
alert('You must check at least one box!');
}
}
</script>
Ok a person clicks on the check box the text field populates with a number 1
I want it to clear if they uncheck the text box now but can't
Here is the code - see function Quantity1()
<script language="javascript">
function OnlyNumbers1() {...
the title is dynamically driven, and there are to many different pages where it is set up differently, so I need to use the title to populate the meta tag.
I am trying to get to work below.
<SCRIPT LANGUAGE = JavaScript>
//alert(document.title)
{
document.write("<META NAME=\"funnel\"...
Everything is dynamically driven
This code will be in the footer and generate differently each time its ran
I have this so far but can't get it working
<SCRIPT LANGUAGE = JavaScript>
//alert(document.title)
{
document.write("<META NAME=\"funnel\" CONTENT=\"" + document.title + "\">\n")...
No
I am trying to make the Meta tag dynamic from page to page
So with every new page - the meta tag will change to that page title.
<title>Home Page</title>
Grab the title an set the meta tag the same content.
<meta tag name="funnel" content="Home Page">
Then they go to contact us page...
Get page title and set it to a variable.
<title>Home Page</title>
<c:set var="theTitle" scope="page" value="<title>"/>
<meta tag name="Funnel" content="<c:out ${theTitle}/>"/>
Any idea how to achieve this goal?
I need to Set page title to a variable I can use in a meta tag.
I get this to work - and title shows in the input field
<SCRIPT LANGUAGE = JavaScript>
//alert(document.title)
function getTitle()
{document.titleForm.theTitle.value = document.title};
</SCRIPT>
<body onload="getTitle();">
<form...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.