Click here to Skip to main content
15,922,325 members
Home / Discussions / JavaScript
   

JavaScript

 
GeneralRe: Ajax issue Pin
MacRaider416-Jan-12 9:48
MacRaider416-Jan-12 9:48 
GeneralRe: Ajax issue Pin
MacRaider417-Jan-12 1:59
MacRaider417-Jan-12 1:59 
GeneralRe: Ajax issue Pin
BobJanova17-Jan-12 3:59
BobJanova17-Jan-12 3:59 
GeneralRe: Ajax issue Pin
MacRaider417-Jan-12 4:12
MacRaider417-Jan-12 4:12 
QuestionRounding a calculation to the nearest 0 or 5 Pin
DiesenDesign14-Jan-12 15:48
DiesenDesign14-Jan-12 15:48 
AnswerRe: Rounding a calculation to the nearest 0 or 5 Pin
Aniruddha Loya14-Jan-12 20:53
Aniruddha Loya14-Jan-12 20:53 
GeneralRe: Rounding a calculation to the nearest 0 or 5 Pin
DiesenDesign15-Jan-12 14:07
DiesenDesign15-Jan-12 14:07 
GeneralRe: Rounding a calculation to the nearest 0 or 5 Pin
Aniruddha Loya15-Jan-12 19:27
Aniruddha Loya15-Jan-12 19:27 
GeneralRe: Rounding a calculation to the nearest 0 or 5 Pin
DiesenDesign22-Jan-12 11:44
DiesenDesign22-Jan-12 11:44 
AnswerRe: Rounding a calculation to the nearest 0 or 5 Pin
Aniruddha Loya23-Jan-12 23:31
Aniruddha Loya23-Jan-12 23:31 
AnswerRe: Rounding a calculation to the nearest 0 or 5 Pin
Satheesh154615-Jan-12 21:09
Satheesh154615-Jan-12 21:09 
QuestionNeed to work with a database Pin
MacRaider414-Jan-12 1:55
MacRaider414-Jan-12 1:55 
AnswerRe: Need to work with a database Pin
MacRaider416-Jan-12 6:58
MacRaider416-Jan-12 6:58 
Questiondocument.formname.objectname notation question Pin
Aleksey Shurtygin13-Jan-12 7:37
Aleksey Shurtygin13-Jan-12 7:37 
AnswerRe: document.formname.objectname notation question Pin
R. Giskard Reventlov13-Jan-12 8:03
R. Giskard Reventlov13-Jan-12 8:03 
GeneralRe: document.formname.objectname notation question Pin
Aleksey Shurtygin13-Jan-12 8:18
Aleksey Shurtygin13-Jan-12 8:18 
QuestionJavaScript Pin
dannaros12-Jan-12 4:47
dannaros12-Jan-12 4:47 
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:

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.