I had enabled Auto-refresh of 20 seconds in HTML code having 'SELECT Drop-down" as one of the elements in the screen.
If both the IE and Fire-fox browsers are opened simultaneously and if i change the value present in the 'Select Drop-down' and update the configuration from the 'IE' browser, the text,radio buttons are updating properly ...
Say I have the following HTML:
<head>
<style>
#container {
border: 1px red solid;
}
.floaty {
width: 200px;
float: left;
border: 1px green solid;
}
</style>
</head>
<body>
<div id='container'>
Text inside the container
<div class='floaty'>
...
I have a list of products that i'd like to add a "pay now" button to so that i can allow my customers to pay via paypal.
I've gone through the documentation and can't find how to do this.
I can add multiple items, but this is no good as i already ahve the list of items to process.
I also need the checkout process to itemise the order, s...
Hi everybody,
I'm trying tu use Jeditable to edit inline some content put in textareas.
So, I call the script files:
<script src="js/jquery.jeditable.js"></script>
<script src="js/jquery.jeditable.autogrow.js"></script>
<script src="js/jquery.autogrow.js"></script>
Then I have a function that sould send data to the server (I kept the...
I'm trying to insert a form dynamically using document.write but for some reasons the form is not working anymore.
Here is the code which calls the javascript http://pastebin.com/iMQ3FxHM and here is the javascript which writes the form http://pastebin.com/vMn9BrKQ . I'm using pastebin because stackoverflow doesn't escape the html tags ...
Hello
I'm writing my first GWT project. I have a form with label, file upload control and upload button but they look awful and too different in various web browsers. Also button from file upload control doesn't have the same style like GWT button control. And the other problem is that in Chrome Button for file choose is on the left?!?
...
I'm writing a Java program that scrapes a web page for links and then stores them in a database. I'm having problems though. Using HTMLUnit, I wrote the following:
page.getByXPath("//a[starts-with(@href, \"showdetails.aspx\")]");
It returns the correct anchor elements, but I only want the actual path contained in the href attribute, n...
Apologies for the incredible newbish question, but I just wanted to hear some authorities on when and where you should use a LITERAL control over a LABEL.
As I understand it, the difference is this: A LABEL can be styled via the <SPAN> tags that are added.
I personally find the addition of <SPAN> tags in my HTML to be very annoying an...
Here's my simple mark-up:
<div style="width:200px">
<div style="width:50%;float:left;">
left side
</div>
<div style="margin-left:50%;width:50%;margin-top:10px;">
right side
</div>
</div>
The problem is that the margin-top:10px; on the right side also pushes down the left side.
What am I missing here? is...
Hi,
I would like to go to the DIV of a particular page from a different page. Is that possible?
I tried <a href="file.html#product">Hello</a>
but it just goes to file.html#home
thanks
C.
I have in my file.html but it keeps getting redirected to file.html#home instead.
...
Hi,
I am having many submit buttons one for each row in a table. Whenever I click on that button, an Ajax call should be triggered. Right now I am wrapping each button inside a form tag. Is this a good approach? If not, what is a better way to do this.
Moreover, I will be replacing the button eventually by an image.
Please advise on ...
I'm very confused on how to access the newly loaded page's DOM after I .click() the submit button on a page and am sent to another one.
Any ideas?
Thanks.
...
hi,
how can I load a css file only if the browser is not IE ?
In other terms, I want to load a css file only if it is Safari, Firefox o Chrome.
The opposite of this:
<!--[if IE 8]>
<![endif]-->
thanks
...
hi,
In Internet Explorer 7, when I click on the menu in 'Categories' block, my website content slides to left.
Could you help me to debug this ?
http://69.90.160.65/~o110334/
thanks
...
I would like to know if it's possible to execute javascript from embedded .gif file . I can make rewrite to a php file to seem as a gif file and execute the code from there but I'm not faimilar with css/html therefore I was wondering if there is any trick to make seem there is embedded a picture but to execute javascript . I tried img sr...
i would like to display the error message in the input element itself instead of showing an error message separately. how would i capture the element in which the message needs to be displayed?
this the code:
function checkForm(form) {
if (yname.getValue() == "" || yname.getValue() == "Your Name" || name.getValue() == "" || ...
I have a problem sending HTML emails from a PHP form.
My goal is to send an email in HTML format with a picture embedded in it. It works perfectly if the destination address is a gmail.com email, but it doesn't seem to arrive to any other address.
What am I doing wrong?
$header = "From: Private PictureBank MDC <[email protected]>\n";
$h...
Hi
How to find Masterpage offsetheight and offsetwidth using javascript ?
Regards,
kumar
...
As a follow on my from last post - http://stackoverflow.com/questions/3307520 . I decided to make a new question rather than to continue editing that one.
I currently have jQuery ui autocomplete 1.8 (or so) working reasonably well, except from one thing. If the user just enters a (valid) name and hits submit, the auto-complete lookup ne...
Hello,
not sure why this isn't working-- i have 3 divs where the two on the side are empty, and all my content in the middle. IE6 is apparently ignoring the empty divs, as the content is pushed to the left. Any ideas what the problem could be?
.sidebar {
float: left;
width: 25%;
height:auto;
visibility:hidden;
font-size:1px;
line-hei...