Is there any possibily that I can have a html page with button, that when the user click it, it will run linux command on the local machine?
If it is not possible, then is it possible to have a firefox extension that monitor a url, and if the url appear, the extension itself will run a linux command on the local machine?
The html page ...
Styling of items in a option list is easy: use a CSS definition and apply it:
<select>
<option>Option 1</option>
<option style="color: #F00; font-weight: bold; padding-left:2em;">Option 2</option>
<option>Option 3</option>
<option style="color: #00F;">Option 4</option>
<option>Option 5</option>
</select>
But what is the ...
Browsing through the source code of Microsoft's sample StockTrader application, I found this snippet in all aspx files:
<meta http-equiv="Content-Style-Type" content="text/css"/>
<title>.NET StockTrader Portfolio</title>
<link rel="stylesheet" href="StockTrader.css" type="text/css" />
Why have the meta tag when the link tag says it al...
I have a select box with 4 values (a,b,c,d). I just want to disable 'c' inside the dropdown.
I used disabled property, it is working in all browsers but not in IE6.
I want to make it work on IE6. Could you give me some fix for this issue.
thanks
...
I have this code:
document.getElementById('img'+i).onclick = function(){popup_show('popup',array_msg[i]+'|||'+date('Y-m-d',strtotime(lec_date))+'-==-'+str_view_forConflict, 'AddEditSchedule;;popup_drag2;;EditSched;;'+String(array_msg_id[3])+';;view', 'popup_drag', 'popup_exit', 'screen-center', 0, 0);};
...but when I click on the imag...
In a HTML/Javascript webpage, the javascript file takes the body of the html, renders the contents in the tag in Flash, and displays the flash content. The page is not flash, it is still Html, but the javascript must be modifying it to display it in Flash. What i want to know is what functions/methods does Javascript use to modify the ...
So that user(non-technical) can have full control of each part of final web page?
Which place holders should there be?
...
Hi,
I want resize browser window to 1000x700 pixel by default on load of html page. Also whenever you resize window the minimum dimension 1000x700 should be maintained. I tried
window.onresize = function(){
window.resizeTo(1000,700);
};
but in IE8 its not working giving error "Access denied", however in FF its work fine.
Please...
I use Aptana Studio 1.5 for PHP development. I want an IDE through which I can just drag-n-drop HTML controls on the Form. I also want the IDE to use DIVs always. At present I manually code using TABLE.
Any suggestions?
...
My querystring has 2 parameters say pm1 and pm2. I want to check the value of each and if the value if '1' then pop open a new window(one for each parameter) and the url for the two windows will be different. What is a good way to do this (javascript can be used)?
I am doing this in an asp.net c# web project.
...
I put upload button to my webpage, but oddly Google Chrome renedring of upload is very odd. It has this text ("E...a") which I have never ever entered anywhere and it dosen't look at all like other browsers renedering. Are there any ways to make Chrome upload button to look like it looks in other browsers?
...
HI,
In javascript when value set to input hidden control,which event is occurPlz Help for me
...
The problem is a footer on a web page that seem to not follow the correct flow like it does in FireFox. The problem feels like it is an Internet Explorer related bug, because the layout will "magically" snap into place when i move the mouse over the link "Legg til i handlelisten". On pages where the "description" part of the page is long...
I have an <input type="file"> where user selects an image file. Is it possible to show this image on a page without actually uploading it to the server first? Basically what I want to do is use the local file from the user's computer.
PS - I am using JQuery.
...
Hello,
I'm following Ajaxian, but I'm wondering if there are other awesome blogs about HTML 5, CSS 3, JavaScript and such?
...
I want to show a DropDown that should display two values in two columns. I want in HTML or CSS.
...
I'm working on a site and it is constantly failing with the following in IE8:
Message: HTML Parsing Error: Unable to modify the parent container
element before the child element is closed (KB927917)
Line: 0
Char: 0
Code: 0
What is the best way to troubleshoot this for IE8? IE7 compatibility mode does not solve the problem. Firefox gi...
I need to be able to select an element that has certain content (innerHTML).
e.g. I have some anchors each with a number as their text. How can I select the anchor with '1' as its text?
I have tried this
$('a[innerHTML="1"]')
this seems to work in IE but not ff or chrome!
...
I know this is an extremely simple question... but I do not know the name of the element I am looking for so I can not research it.
I am looking to add one of those up/down arrow buttons that allows you to increment a textbox.
...
OK, beating my head against the Javascript/jQuery wall over here,
here is the code, which I simply can't get to work properly, any help is highly appreciated!
Especially this bugs me, changing row 60 from
c.gbForm.validator = c.dom.gbForm.validate(c.gbForm.validator); to
c.gbForm.validator = $("#gbForm").validate(c.gbForm.validator);
a...