Hide The Real URL On Browser?
Aug 3, 2009I have to hide the url from bowser. I want to hide real URL and display to the specific URL on browser.
View 3 RepliesI have to hide the url from bowser. I want to hide real URL and display to the specific URL on browser.
View 3 RepliesIs there a way to find the browser height with jQuery, not including the toolbars and address bar nor anything else, just the actual space user for displaying the websites..?
Example:[url]
I want to hide the browser address bar when open a new window. I can hide menu bar, status bar, etc except address bar.
View 5 Replies View RelatedI know how to click a link to show a hidden div. However, how can I hide the div when users click anywhere in the browser? I would like some behaviour like "releaseOutside" in javascript.
I search this forum and find some code to try, but it doesn't work. When I click the link, the div does not show anymore (if I took out the document.onclick function, the div shows). Here is my code:
<script language="javascript" type="text/javascript">
function showdiv() {
document.getElementById("mydiv").style.display = "block";
return false;
}
document.onclick = function() {
document.getElementById("mydiv").style.display = "none";
}
</script>
</head>
<body>
<a href="#" onclick="return showdiv()">Link</a>
<div id="mydiv" style="display:none">bah bah bah...</div>
I want to hide the browser address bar when open a new window. I can hide menu bar, status bar, etc except address bar.
View 4 Replies View RelatedWhy does a comment tag hide the havascript if the browser does not support javascript? I thought comment tags were for comments not to hide things...
View 4 Replies View RelatedSince the code is triggered ever onclick event it may be resource hungry on large pages.
I guess desired upgrades to suit it more for general purpose and reuse would be:
1> Replace document.write with a way of altering the CSS class rule property. Hard part on this after reading quirksmode would be in targeting the CSS rule in a cross browser, not to intensive way.
2> Find a better cross browser trigger attachment than the current firing on every click.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Spinner Test</title>
<style type="text/css">
<!--
.spinnerContainer {}
.spinnerLink {cursor: pointer;}
.spinnerContent {display: block;}
-->
</style>
<script language="JavaScript" type="text/JavaScript">
document.onclick=function(evt){
//Credit to Beagle and coding forums http://www.codingforums.com/showthread.php?t=90062
if(!evt){evt=window.event;} // *** IE fix ***
var spinner;// *** element that got clicked ***
// *** Credit to PPK from quirksmode.org for this block ***
if(evt.target){spinner=evt.target;}
else if(evt.srcElement){spinner=evt.srcElement;}
if(spinner.nodeType==3){spinner=spinner.parentNode;} // defeat Safari bug
if(spinner.className=='spinnerLink'){
var contentDiv=spinner.nextSibling;
if(contentDiv.nodeType==3){contentDiv=contentDiv.nextSibling;}
//Action
if(contentDiv.style.display!='block'){contentDiv.style.display='block'}else{contentDiv.style.displa y='none'}
}//from: if(spinner.className=='spinnerLink'){
}//from: document.onclick=function(evt){
document.write('<style type="text/css">.spinnerContent {display: none;}</style>');
</script>
</head><body><br/><br/>
<div class="spinnerContainer">
<span class="spinnerLink">SPIN!</span>
<div class="spinnerContent">Content</div>
</div>
<br/><br/>
<div class="spinnerContainer">
<span class="spinnerLink">SPIN! 1</span>
<div class="spinnerContent">Content 1</div>
</div>
</body></html>
I'm using the scroll function with a layer containing a graphic that sits over the slider on the y axis. This works fine in IE but overhangs the lower scrollbar arrow in Netscape, Firefox and Opera, killing its functionality, so I'd like to hide it in these browsers.
Could someone show me the best way to work a function that says (taking the layer ID as 'Bar')
IF browser = IE
THEN 'Bar' = visible
or (better?)
IF browser <> IE
THEN 'Bar' = hidden
And how should I allow this to behave in Safari?
I found this script on a tutorial site but it had no summary of browser compatibility or any other issues. I know absolutely nothing about javascript and, although it works fine when I test it,
<head>
<script type="text/javascript">
lastone='empty';
function showIt(lyr)
[Code]...
The main thing I want to find out is that how vibrantimedia can change the content of a page from a javascript. The content does have a full object set up, meaning not verything is in NAME/ID.
View 6 Replies View RelatedHow can i insert only a real number (an integer with only one decimal separator) in a edit field
perhaps in onchange event I have to test if the decimal separator in the text is > 0 I simply have to put it as a null key.
i am developing a help desk software using php and oracle, when an expert posts a solution to the user who asked it, an alert should pop up at the user's machine to alert them that a solution has been sent end then it should dissappear,i was told to use ajax to check real time and then use javascript to pop an alert but i didnt understand and was told to post it on the javascript section.
View 1 Replies View RelatedI've got a small problem here. I'm trying to write some code that would
generate a drop-down menue for me, where I'd just need to enter the
menu- and submenu items into an array. The items are to be displayed as
text. Now, I want to have the layers with the submenues to appear more
or less under the appropriate main menu items. For this I need to be
able to calculate how many pixels a given text uses up on the screen of
the user. That's all fine with IE and an unproportional font like
courier. The problem is, there is this nice setting that allows you to
change the diplay size of the text - which is pretty much disfunctional
in IE, but in mozilla, it works. Which means that I can't just say that
one letter in courier, size 2, is 4 pixels wide and be happy with my
calculation, because then somebody can just pop up with another text
diplay size and *boom* - my calculation is wrong again.
Now, is there a realistic way to find out how many pixels _exactly_ a
piece of text takes up on the user's screen? Or can I make the given
piece of text a DIV and then have some kind of document.divname.left
that gives me the actual location of this text?
I'm making a survey where every question has a numeric value assigned to it, and as the user clicks on a checkmark button to approve (or uncheck to disapprove) the values add or subtract to give a total at the bottom of the page.
Basically, it's a spreadsheet but with fixed values for each row instead of being able to type them in.
I can do this easily with php, but only if the user clicks the submit button. I was hoping to find a way to do this real-time.
I'm not looking for someone to do this for me, but can someone point me in the right direction of a tutorial or something that is similar so I can build this into my program?
Here is a short javascript for a real time analgoue clock. It is designed to resemble some LCD clocks where the hands "fill" in the dial as they move around the face. You can change to values of the "top" and "left" style attributes to position the clock anywhere on your page.
View 4 Replies View RelatedI'm wondering how I can add numbers in real time using javascript.
example,
say I enter a number in a text field,
<input type="text" name="qty" value="2">
<input type="text" name="cost" value="5">
how would I then be able to get the total in another test field, like:
<input type="text" name="total" value="10">
How can I get the real image dimension with javascript? code...
However this only seems to be working sometimes in Opera . No luck in firefox or chrome (dunno about IE)
Anyways to do it?
I thought of maybe using an Ajax call, but then the imgLink cannot be a relative position, which would be difficult to parse due to some address like http://example.com/directory as i tried to get everything before the last /
I want to find real IP Address of computers that are connected to my company's website. All users who want to see our website pass from our ISA Server. So, if I want to get their real IP Address with javascript commands, I'll get one and only one IP Addres from anywhere that is our ISA Server address. How I can get real ip address of those computers and compare it with predefined address?
View 1 Replies View RelatedHere's an example: [URL] doesn't update every single listing that comes on the market, but it automatically adds the new ones in the right category with his name on them.
View 1 Replies View RelatedI have a form that is using HTML and PHP to make calculations for an
order form. One of the fields is asking for a total number of
workstations. I would like this field to be a real-time total of five
other fields in this form.
I am struggling to find examples on the web that implement Javascript
callback functions of an embedded Real Player.
There are lots of examples for Visual Basic, but I couldn't find any for
Javascript.
I am looking for any basic example.
For example, showing a javascript alert when a Real Player error is
triggered. (with examples for both Netscape/Firefox and Internet Explorer)
How can i find real height of the element? It is changed with css to fixed, but i need its real height, as it be without css.
View 2 Replies View RelatedI have been using the jquery countdown plugin made by [url] for a while and while I am pretty familiar with it, I haven't been able to accomplish what I want for one of my projects.
I want to be able to add hours/minutes/seconds to a countdown in real-time by clicking a button.
Let's say I have 2 countdowns. They both get their ending date from a mysql db, e.g: 2010-09-26 00:00:45 and 2010-09-27 14:45:00
When I click a button, I want the countdown Y to increase by the X amount of hr/min/sec, update my ending date in mysql, and update my counter for every visitors to see without having them refresh the page. I have tried messing with ajax, but wasn't able to accomplish anything close. (I got it to update every 1 sec but it would flicker then)
I need to make a counter that counts up (preferably in real time but not crucial).
Ideally, it would count up by 9 dollars per second and go to the hundred millions.
im currently trying to create a real-time username checker. Once the user enters the username I would like some javascript to run and check whether the username is already in the database, then if it is return 'this is already in use'.Unfortunately I am not able to use ajax.
View 9 Replies View RelatedI'm using sliders to change text colour dynamically; at the moment, I'm doing it by iterating through the getElementsByTagName collection; like
paraAry = document.getElementsByTagName("p");
paraLen=paraAry.length;
for(j=0;j<paraLen;j++){
paraAry[j].style.color = "rgb("+bodyColor[0]+","+bodyColor[1]+","+bodyColor[2]+")";
paraAry[j].style.borderColor = "rgb("+textColor[0]+","+textColor[1]+","+textColor[2]+")";
paraAry[j].style.backgroundColor = "rgb("+textColor[0]+","+textColor[1]+","+textColor[2]+")";
}
But blatantly it's well inefficient; is there a better way to achieve this - like just a single property I can change to make all elements of a given name change.