Click here to Skip to main content
15,903,856 members
Home / Discussions / JavaScript
   

JavaScript

 
AnswerRe: JavaScript Pin
R. Giskard Reventlov13-Jan-12 7:59
R. Giskard Reventlov13-Jan-12 7:59 
GeneralRe: JavaScript Pin
dannaros13-Jan-12 8:04
dannaros13-Jan-12 8:04 
GeneralRe: JavaScript Pin
R. Giskard Reventlov13-Jan-12 12:15
R. Giskard Reventlov13-Jan-12 12:15 
GeneralRe: JavaScript Pin
dannaros13-Jan-12 23:21
dannaros13-Jan-12 23:21 
QuestionHow can I download this video? Pin
turbosupramk39-Jan-12 8:29
turbosupramk39-Jan-12 8:29 
Questionwondering why about the site..jump..other site.. Pin
hack0042-Jan-12 2:18
hack0042-Jan-12 2:18 
AnswerRe: wondering why about the site..jump..other site.. Pin
DaveAuld2-Jan-12 2:36
professionalDaveAuld2-Jan-12 2:36 
AnswerRe: wondering why about the site..jump..other site.. Pin
thatraja2-Jan-12 2:49
professionalthatraja2-Jan-12 2:49 
Why re-posts on Web Development[^] & PHP[^] forums? Dead | X|

BTW the site(you have mentioned in your question) is not loading for me..It showing something Chinese words in Title bar.

hack004 wrote:
but..i in "search engine"click the site,,,it will be jumpother site....i have seen it's source code,but no find out how does it jump?
May be code stored in other javascript file.

Using javascript(win.open()) you can open another window. Also the target=_blank will open new window.
See the below code.
XML
<html>
<head>
<title>Show search results in new window</title>
<script language="javascript" type="text/javascript">
function openwin()
{
    window.open("http://www.codeproject.com/search.aspx?q=" + document.getElementById("txtText").value + "&sbo=kw","NewWindow","width=500,height=500");
}
</script>
</head>
<body>
<input type="text" id="txtText">
<A href="javascript: openwin()">Search</A>
</body>
</html>

The above page will show the search results(Codeproject) in new window.
thatraja

My Dad had a Heart Attack on this day so don't...
Pompeyboy3 here
| Nobody remains a virgin, Life screws everyone Sigh | :sigh:

GeneralRe: wondering why about the site..jump..other site.. Pin
hack0042-Jan-12 2:59
hack0042-Jan-12 2:59 
GeneralRe: wondering why about the site..jump..other site.. Pin
hack0042-Jan-12 3:04
hack0042-Jan-12 3:04 
GeneralRe: wondering why about the site..jump..other site.. Pin
thatraja2-Jan-12 3:13
professionalthatraja2-Jan-12 3:13 
GeneralRe: wondering why about the site..jump..other site.. Pin
hack0042-Jan-12 3:14
hack0042-Jan-12 3:14 
GeneralRe: wondering why about the site..jump..other site.. Pin
thatraja2-Jan-12 3:19
professionalthatraja2-Jan-12 3:19 
GeneralRe: wondering why about the site..jump..other site.. Pin
hack0042-Jan-12 3:20
hack0042-Jan-12 3:20 
GeneralRe: wondering why about the site..jump..other site.. Pin
thatraja2-Jan-12 3:30
professionalthatraja2-Jan-12 3:30 
GeneralRe: wondering why about the site..jump..other site.. Pin
hack0042-Jan-12 3:32
hack0042-Jan-12 3:32 
GeneralRe: wondering why about the site..jump..other site.. Pin
thatraja2-Jan-12 3:37
professionalthatraja2-Jan-12 3:37 
GeneralRe: wondering why about the site..jump..other site.. Pin
hack0042-Jan-12 3:41
hack0042-Jan-12 3:41 
GeneralRe: wondering why about the site..jump..other site.. Pin
hack0042-Jan-12 3:57
hack0042-Jan-12 3:57 
GeneralRe: wondering why about the site..jump..other site.. Pin
AprNgp2-Jan-12 5:56
AprNgp2-Jan-12 5:56 
AnswerRe: wondering why about the site..jump..other site.. Pin
AprNgp2-Jan-12 6:01
AprNgp2-Jan-12 6:01 
QuestionChrome positioning problem Pin
ed welch31-Dec-11 2:13
ed welch31-Dec-11 2:13 
SuggestionRe: Chrome positioning problem Pin
DaveAuld31-Dec-11 3:14
professionalDaveAuld31-Dec-11 3:14 
GeneralRe: Chrome positioning problem Pin
ed welch31-Dec-11 3:32
ed welch31-Dec-11 3:32 
GeneralRe: Chrome positioning problem Pin
DaveAuld31-Dec-11 3:51
professionalDaveAuld31-Dec-11 3:51 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.