Search:
Type: Posts; User: FromU2ME
Search :
Search took 0.03 seconds.
I think theuedimaster's talking about the text background, not the body background, which is light blue.
You'll need to post the PHP code.
Try this:
echo "<a href='#' onclick=\"javascript:parent.location.href='index.php?op=custome_blocknews&id=$id'\"><font face=tahoma color=#0D4898 size=2>$title</font></a>";
First, the select doesn't have a value in the tag itself.
Isn't it easier to first decide whether isset($_SESSION['specified_pp_total']) is true instead of doing it for every option? (just a...
1. You don't set the table border.
2. You don't set the cellspacing nor cellpadding in the table.
3. You don't set any width nor height for every td.
Can't expect things to look to good in every...
toplisek:
You could simply close the new window and let users go back to the opener window (you can't exactly use the browser BACK-button in the new window since there's nothing to go back to).
You could tell your users to drag your website URL to the homesite-button, or...
<A HREF="#" onClick="this.style.behavior='url(#default#homepage)';...
Seems like you want it "on the run", so use onkeyup instead of onclick in the textarea.
Now, for the BIG question of yours - do you know any regular expressions in JavaScript?
Been there, done that (NOT), banned it for ever! :cool:
I really looooove these kind of sites... it's HAPPY HOUR!!! Damn - you can laugh for hours :D
The cursor usually flickers when there's a timer involved - in your case:
So you want to access a HTML-code that only will be visible to the user if frames aren't supported?
Shouldn't be so hard... use a function outside <frameset> that you can call from different...
Seems lite the code is made by a program - and those usually make sure that the script works everywhere. Are you sure you didn't change anything in the code?
Now why would you like to do that? :confused:
You mean in the <iframe>? Doesn't it work placing a window.print()-script in the <iframe>?
...if not got it right... :confused:
You can use
if (document.formName.fieldName.value == "what u want") {
// Something to happen here...
}But without knowing what they depend on, it's really difficult...
Does this help?
myWidths = [.37, .37, .37, .37, .0417, .0417, .4, .33, .1, .4, .33];
//save users measurement preferences
userHoriz =...
For your last question - you'll need to post some more code (all code would be nice :)
function testPostCode () {
if (sitePostcode() != "") { // <<< => sitePostcode()
var...
Well, unfortunatelly the browser won't save anything on a page without you doing it manually (ie. by using cookies). I've had the same issue, trying to fix it using a simple snippet but it doesn't...
Without seeing the code the only advice I can give you is to use cookies to find out the last image that the user saw.
What is the purpose of doing that?
What you are testing here (the red line) is not the VALUE of the field (plus the misspelled "false"):
function testPostCode ()
{
if (sitePostcode !="")
{
var myPostCode =...
Use this - if you already haven't found it out ;)
This code is using the method Selrach was talking about...
<html>
<head>
<style type="text/css" media="screen">
.myTBL {...
Not really a JavaScript matter - but what the heck...
<a href="bigImage.jpg" target="iframeName"><img src="smallImage.jpg" /></a>
<br /><iframe src="beginURL.html" name="iframeName" width="x"...
I think the code in red is the troublemaker... Because, there, you simply send the user straight to the image (without any HTML at all) - in which you cannot control the margins ;)
var...
Hm, the code above will not actually "print" the site on a printer, actually it won't do anything...
Do you want it printed on paper or the screen?