Pop Up Sized Window To Display Certain Line Down
Feb 29, 2004
do any of you guys know how i can pop up a window at a specific size so league table 'h' from this website page is positioned in view ???????
i dont want to just link to this page. has to be just league H.
View 7 Replies
ADVERTISEMENT
Aug 23, 2011
Is there a way to open a link in a new window. That is presized? not a new tab, but a completely new window that would be set to like 600x800 for example? and at the same time pass this? The W3C Markup Validation Service
View 2 Replies
View Related
Aug 23, 2011
I have a text area that the user enters information into this text area then becomes a string and is displayed. Currently if the user presses enter it shows in the test area as a new line however in the string it is only a space. How can I get the string to recognise and display the enter as a new line.
<html>
<head>
<script type="text/javascript" >
[code]....
View 5 Replies
View Related
Jul 20, 2005
I need help finding where an error is occuring in my code. I use a
try-catch block like this in my global.asa:
} catch (e) {
Application('errormsg') = ("An exception occurred in the script. Error
name: " + e.name
+ ". Error description: " + e.description
+ ". Error number: " + e.number
+ ". Error message: " + e.message); }
And this is what is SOMETIMES returned when I display
Application('errormsg'), the rest of the time, it works:
An exception occurred in the script. Error name: Error. Error description:
Path not found. Error number: -2146828212. Error message: Path not found
But I don't know which path is not found! (I'm using the filesystem object
and importing data from a file into SQL.) Is there a way to display the
line number of the error or more details? Or do I just have to try to catch
the error by going through each bit of code?
View 3 Replies
View Related
Apr 13, 2010
I am tring to display some texts in a textbox using to create a new line but it does not work.
<script>
document.getElementById("txtbox1").value=" this is my firstline
This is my second line
[code]....
View 3 Replies
View Related
Oct 22, 2002
Is it possible to create a pop-up window without putting code in the <HEAD> of the document? I'd like to create a link to a new window but I don't have access to the <HEAD> of the page.
View 2 Replies
View Related
Nov 22, 2011
If I have a div that's 300px by 20px, is there a function that calculates whether a string will display with a line break, given font-size of 21px? If not, I'll have to create some code, but if it's already available, that's even better
View 13 Replies
View Related
May 3, 2004
One way of styling button elements to an exact size (relative to their content); good for an ie-centric GUI, I suppose...
<html>
<head>
<title>LittleButton</title>
<style type="text/css">
button{
width:expression((offsetWidth - clientWidth) + children(0).offsetWidth);
height:expression((offsetHeight - clientHeight) + children(0).offsetHeight);
}
</style>
</head>
<body>
<button><img src="res://shell32.dll/2/230"></button>
</body>
</html>
View 3 Replies
View Related
Jun 2, 2006
I'm trying to make a window popup in a 250x250 window.
<script language="javascript">
function MyOpenWindow() {
var MyURL = 'http://www.xyz.com/developers/pops/categories.php'
var MyWindowName = 'GoldFiles Categories'
var MyWindowOptions = 'width=250,height=250'
window.open(MyURL, MyWindowName, MyWindowOptions);
}
</script>
<a href="javascript:MyOpenWindow();">Site Categories</a>
I'm not terribly familiar with JavaScript, and was hoping someone more experienced could tell me if this is correct, and if so, were do i put this code? Also, I'm trying ot mix it in with a PHP echo(' <script> '); php code block.
View 5 Replies
View Related
May 16, 2002
I want to be able to do this:
Have some thumbnails that when clicked, pops up the full-sized image.
The thing is this: Each image will be a different size.
I want the pop-up window to have the dimension of each full size image with no padding, etc...
So what's the best solution to this in javascript?
View 5 Replies
View Related
May 25, 2010
how to read a text file using javascript line by line and separate from special characters in it. for example
Text.txt has
001203=Line one=abc.html
024353=Line two=xyz.html
092434=Line three=hjf.html
i want each column in an array like { 001203,024353,092434 } so total 3 arrays.
View 14 Replies
View Related
Feb 22, 2010
getting first line coordinates of multiple line inline element.
Example HTML
aaa bbb ccc ddd <span id="target">eee fff ggg
hhh iii jjj</span>kkk lll mmm nnn ooo ppp qqq
$(document).ready(function() {
[Code]....
Assume that span#target has a line break, when I see a browser. Then I click span#target, above function returns the head of coordinates which second line ("hhh") has. I want to have the coordinates which first line ("eee") has. How can I get that?
View 1 Replies
View Related
Jun 4, 2009
I am after a simple div scroller that scrolls text up/down within a fix sized div, with two scroll buttons that can be set to hover/click, I have found a load that use it for <li> tags or images and scrolls only up by set amount, but I would like this for text etc.
View 6 Replies
View Related
May 30, 2007
I need to open a new window from an existing HTML page to a site in
which we do not want to show the address for. I have set the titlebar
to no but it will still place the title on the titlebar Here's my
function code:
function myOpen()
{
window.open("http://
www.somewhere.com","mywindow","location=no,titlebar=no");
}
I am calling it by the following line:
<img src="art.gif" onclick="myOpen()">
View 1 Replies
View Related
Mar 16, 2010
I am using mouse x,y onclick in one div (if mouse is in one set of coordinate range) to determine whether or not to show/hide another div, and am stumped as to how to compensate for the user changing page size, as the coordinates change. Is there an absolute xy, regardless of page/text size, or code to compensate for it? What is going on here is I have flash that I have no control over (wix) and I need to show Html (which wix doesn't), so I am having to determine if the user is over a certain button in the swf which I put in a div to give me some control over the flash. I'm using on click to bring the HTML to the front in a certain position, while the flash does its animation thing.
View 1 Replies
View Related
Jun 21, 2010
I've never worked with Ajax before but I've been reading up on it and done some basic tutorials and am comfortable with the concept of asynchronous communication and how everything works from a technical communication perspective. That being said I have no idea where to start on this project which seems like it should be fairly simple. 1. the browser will have a "working area" which is a rectangle of some decent size, there will be a toolbar of objects on the left hand side. This work area should be shown as a grid that the objects will be placed into.The size of this grid (basically the gridlines) will need to be generated automatically based on user input (also the size of the components/objects that will be dragged in and the size of the rectangle) if it is too large (say 500) i'd like a way to pan around and zoom in as well... 2. For simplicity say there are 2 components: Available, unavailable and an erase feature. 3. each object when dragged to the working area should create an object that has some properties (handled programatically from input elsewhere on a simple form) I will be placing these in a database server side. 4. I'd like to be able to drag across the grid to continuously add the selected object and I'd like to be able to click a button on the edge of the grid to fill in the entire row with the objects. From everything I've read on this it seems like this should be somewhat easy but again I don't know what framework to use to start. I'll be putting this in a drupal site and integrating it with a few modules if that makes a difference (i think that part of the programming will be separate from whatever specific implementation I use to get this Ajax part up though)
View 1 Replies
View Related
Jun 29, 2010
Not what i would like but the client wants the browser re-sized on the site loading/refreshing... Been using the following and it works fine.... apart from in Safari. how i can get it working in Safari, or no chance?
Code JavaScript:
$(document).ready(function() {
window.resizeTo(1152, 866);
});
View 6 Replies
View Related
Jan 11, 2012
reading file in jQuery. Please if anyone knows how to write tome or to the website.
$.get("data/zelis.si.txt",function(data){
$.each(lines, function(n,line){
$.ajax({
[code]....
View 7 Replies
View Related
Feb 1, 2010
I have a table that is written from 'display' window to 'register' window. It is a CART TABLE. It is suposed to cut down on posts to the server and is written entirley with client side javascript. There should really be ony one post to the server when the clients' order is complete and the adjustable table is posted.The cart table in 'register' window has two viewable rows and has a scrollable window in the Y plane. One fixed Header and The getElementsbyClassName works with 'sumsubtotal()' but not with 'qtymultiply()' and this might be a result of refrencing the same class 'itemrow' twice even though I've declared them localy within seperate functions, my guess is that the getElementsByClassName is global and can only refrence the class 'itemrow' once?
View 1 Replies
View Related
Jul 7, 2010
How do I read a local text file line by line, one line at a time. I got upto opening a file, and can read whole file at a time. But I want to read just one line at a time. May be have a counter of lenght of the file and read only the counter number line at a time.
<SCRIPT language=JavaScript>
var fso = new ActiveXObject( 'Scripting.FileSystemObject' );
f = fso.OpenTextFile( "c:\mytextfile.txt", 1 );
[Code].....
View 2 Replies
View Related
Jan 13, 2011
I have a user that insists they have web applications that do this, and wants the one I'm building to do it too...
You have a table on an html form. As the user changes one or more fields in a table row and moves to the next line, the changed row should AUTOMATICALLY be sent back to the server and updated in the database.
If the user moves BACK to a line that's already been changed, and changed a field, a popup should display and ask "if the user really wants to change the field". If so, again, it should AUTOMATICALLY be sent to the server and updated in the database...
Ignoring the horridness of making that many round trips to the server and banging the database for every line, is there a way to AUTOMATICALLY do the equivalent of a submit and post the changed table row back to the php script?
View 3 Replies
View Related
Jul 21, 2011
is this correct
var mid = math.floor((0 + array.length)/2)
from here you could use array.slice to divide the array into two equal sized arrays?
View 6 Replies
View Related
Nov 15, 2006
Is there a way to display the file selection window for a file input field via JavaScript? My goal is to emulate the behavior seen in Yahoo! Mail BETA. When adding an attachment, it displays a file selection window when you click a custom button/icon. I saw an example of using CSS to actually position the browse button behind an image. I am hoping that isn't the only option.
View 15 Replies
View Related
Jun 5, 2011
I'm a newbie when it comes to PHP & JQuery. I have a small issue and was wondering if someone could help me out.
I have a PHP page which takes in the 'source' and 'destination' from the user and results the distance in a new window.
I just want the distance displayed within the same window. I have absolutely NO clue how to use Jquery or what the syntax is.[code]...
View 7 Replies
View Related
Nov 15, 2009
I tried to display an alert window (avoid pop up since some users blocks it and hence not displayed on onload event in body) But it is not displayed properly like popup window.
View 1 Replies
View Related
Jan 3, 2011
I'm currently paying for a web service on a hosted platform. Basically, I'm unable to edit any raw content, however I am able to do things like add JS/HTML to the header or footer of a page, which will in turn be displayed on every page of this platform. My dilemma is, I only want content being showed on a single page of the platform. Specifically, I want a window.alert being displayed on the "/signup" page, but all I have to work with is JS in a global footer.Is there some way I can use window.location to achieve this?
View 1 Replies
View Related