Is it possible to turn an HTML meta tag into a PHP variable using javascript? I want to turn the Page Title metatag into a PHP variable which I can then echo...
Hi everyone, I am trying to do a very simple CSS file switch to change the skin of my site by toggling though with a button in ASP.NET and function calls in...
Is it possible to turn an HTML meta tag into a PHP variable using javascript? I want to turn the Page Title metatag into a PHP variable which I can then echo...
I wouldn't use the meta tag. What I'd do: I'd have the domains set a "hidden" field - say, "domain". This could be included in your HTML: <input type="hidden"...
I do not think it is possible. PHP is server-side that is processed before the page is rendered by the browser. JavaScript is processed after the page is...
I forgot to mention that I did declare the button, by the way. Here is the code (outside of the functions): var link = document.getElementsByTagName("link"); ...
I don't use PHP so am drawing on ASP experience here, but ... I think you are talking about some JavaScript in the DESTINATION page to extract the information...
... From: Stewart Buckingham Is it possible to turn an HTML meta tag into a PHP variable using javascript? I want to turn the Page Title metatag into a PHP...
listgroups@...
Sep 5, 2007 2:07 pm
15508
I'm not completely understanding what you want to do, so forgive me if I'm off-base here. Also, sorry for the slightly off-topic post here - I'm not going...
Hi Frank, I'm not sure whether you have declare the variable "btn". According to the error message, btn seems to be not declared :-). Well, as for me ,I prefer...
On second thought, you could also go pure JavaScript, couldn't you? something like: document.title = document.URL + " on sale!"; Maybe I'm not understanding...
Hi Frank, The script is trying to access 'btnSkin' before the body has loaded. If you declare the variable 'btn' inside your functions the error will probably...
... JavaScript functions don't have automatic access to user-defined global variables. ... Either define link and btn inside the functions, or prefix them with...
Hi, I am designing these pages which are using the style sheet www.bmc.com/bmctv/bmctv2.css Issue I am facing is only one of the pages is reflecting the exact ...
Hi Folks. In one <TR> i have three <TD> cells, each with a transparent image. in the next <TR> there are three <TD> cells each with a corresponding radio...
You are using onSelect and onDeselect.events. Could you point us at the description of these with relation to radio buttons please as I am not familiar with...
Thanks David. My may be right. One day, I'm sure the W3C will see the usefulness of onSelect and onDeselect applied to radio button sets. Only makes sense....
Jon, Thanks for your idea. I think its a good one. The background color doesn't change. I get a syntax error when I use background-color instead of background...
Hi, I am having a frameset and 2 frames in it.In 1st frame I set the src property to a URL that is returned by a third party api. This URL is not the actual...
IE is notorious for ignoring CSS attributes, like in this case width: 640px; It looks like IE is displaying the div narrower than it should, thereby cutting...
... Notice that I used "style.backgroundColor", although "background" should work just fine, like it does in CSS. When a CSS attribute contains a hyphen, the...
Thanka so much for reply! So where exactly do i need to add the spacer image? In the html code or the css? I would appreciate your help in this. Thanks so...
I'm pretty sure that you're out of luck here. For security reasons, neither the src URL from other hosts nor the frame document content (perhaps also only...
Duane... While I agree with you about outlawing IE... Are you kidding me? A spacer gif? Is this 1998? Ekta... I think this post would have been better on a...
Hello, everyone. I am trying to get a Flash object that displays local weather on a home page. Neither the Flash nor the code to implement the Flash was ...
I've been trying to change an image when a checkbox is clicked or unclicked. I get an error when I test the checkbox (which is actually an array of length1)...