Hi guys,
Here is my anchor tag, onclick of which i am going to call function which creates dataline chart:
echo "<a id = \"#dhf\" class = \"graph_dhf\" href = \"javacript void(0)\" onclick=\"open_page('senddata($unm)', 'my_chart1');\">datalinechart</a>";
here
open_page('url', target) function in ajax_navigation.js page which i set...
Hi,
I would like to insert an Excel spreadsheet into a Web page but would like to change some of the data at the same time to make them more user friendly.
Is it easily possible?
Thank you for your help.
...
I have an html page that I want to edit. I want to remove a certain section like the following:
<ul class="agentDetail">
........
.......
........
</ul>
I want to be able to remove the tags and all the content between them. The idea is to edit a page and redisplay it minus some data that I don't want to be seen (hence the removal of s...
While trying to use the hints in your answer at
http://stackoverflow.com/questions/686384/sending-formatted-lotus-notes-rich-text-email-from-excel-vba
I could do almost everything I needed: write multiple lines with data from a database of mine, formatting the body by mean of html code, with links and formatted text.
I also need t...
I have a python script that takes a number of variables. I also have a html page that can receive post values.
How can I start a browser from python and point it to the html page I have above and send those post variables to the html url?
The problem I have is that if I use urllib/urllib2 to do the post, it doesn't load the browser win...
I have the following code:
http://www.project-vanquish.co.cc/gridtest/drag-grid.html
The plan is to allow the user to control that div (with the smiley face) in 3 ways:
1 - by the Cursor Keys on the keyboard
2 - by dragging the div
3 - by clicking on an area and the div will move to that position
The problem I have is that when I click...
How to remove the clickabilty of an image?
as you may see, there is no arroung the image...
the code of img:
<input name="ui_taskFormControl$ctl03$ctl00$ctl03$ui_BirthPlaceImage" height="20" id="ui_taskFormControl_ctl03_ctl00_ctl03_ui_BirthPlaceImage" type="image" src="SmartPenHandler.ashx?FormId=XYZ&FieldId=BirthPlace" complete="com...
I am trying to learn and use html5 and have a basic layout but the sidebar (aside) and section (content) elements are not equal in length and I want them to be equal. I have been trying to fix this with faux column method but with no success yet. I have had several attempts and my last attempt so far I used a background image in 'mid-sec...
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Add code to open bundled Web site
NSString *path = [[NSBundle mainBundle]
pathForResource:@"index"
ofType:@"html"
inDirectory:@"www" ];
NSURL *url = [NSURL fileURL...
I am looking at building a web page which is going to have a list of over 100 medium sized images and unfortunately I will not have any access to a database.
The user will be filtering through the images and displaying around 8(at most) at a time.
The idea is to filter through the images using jQuery and CSS classes, to show/hide etc, ...
Hi,
Is there a good alternative to Firebug that I could use with IE 7 and 8?
I'm interested in modifying CSS/HTML on the go, as well as debugging some of the java script and viewing the positions of certain elements on the page.
THank you
...
I would like different nested onmousedown events. For example, consider the following code:
<div id="parent" onmousedown="foo();">
<div id="child1"> </div>
<div id="child2"> </div>
<div id="child3" onmousedown="bar();"> </div>
</div>
I'd like it so that clicking on any area that's inside the parent div, including child1 and chil...
Hi,
I have a table in HTML. I have made this table as editable by using Javascript. When the user clicks a cell, it will become editable. The problem here is, when the cell is already editable, if the user again clicks on the cell ...., some tags and other things appear.i.e. new text boxes appear for every click.
How this could be preve...
Hi,
I'm a bit of a novice when it comes to coding but have been in the process of setting up my own webpage via Dreamweaver as the WYSIWYG approach waorks for me. The problem is I am trying to implement a disjointed image swap on click event.. It works fone for me on IE but not on firefox, and have been tearing my hair out trying to fi...
I have created one html table,each row has checkbox. i want that when i click on checkbox., all the caption in that rows should be displayed with textbox,so that i can edit that.in short i want multiple row edit functionality.
...
Here's a simple menu structure:
<ul id="menu">
<li><a href="javascript:;">Home</a></li>
<li><a href="javascript:;">Test</a></li>
</ul>
I want the <a> to be stretched so that it fills the entire <li>. I tried using something like width: 100%; height: 100% but that had no effect. How do I stretch the anchor tag correctly?
...
i have a html form
<form action="" method="post">
<textarea id="content" name="content"></textarea >
</form>
ok it work good when making var_dump($_post);
but the problem is when adding any js plugin on this textarea its not give me any out put
this in my new script i cant know the reason
i testes many plugins
like text area resize li...
Hey
I would like to make an image change after 30 seconds...
The code I'm using looks like this:
Script:
var images = new Array()
images[0] = "image1.jpg";
images[1] = "image2.jpg";
images[2] = "image3.jpg";
setTimeout("changeImage()", 30000);
var x=0;
function changeImage()
{
document.getElementById("img").src=images[x]
x++;
}
An...
I came accross an opensource code in views, with a 't()' tag similar to html escape sequence, i.e h().
<%= f.label :password, t(:password, :scope => "activerecord.attributes.user") -%>
I just want to know what t() means.. Anyone?
...
I have a html table with many cells and I would like to set a checkbox field as enabled with style="display: none" when somebody tries to click on a particular cell. I should reset this when the user clicks on the same cell again. How should I do this using jquery?
...