How click a link with JQuery
Hello.. I am very new to JQuery....I have the following questions..
1) I am using AHK Hotkeys to click a link.....with this code...
- com_init()
- pwb:=iweb_getwin("") ;("")...blank...focus on active window
- text:= COM_Invoke(pwb, "document.body.innerhtml")
- string = fruits
- IfNotInString, text, %string%
- {
- Send, {f5}
- while COM_Invoke( pwb, "readystate" ) <> 4
- Sleep, 50
- while COM_Invoke( pwb, "document.readystate" ) <> "complete"
- Sleep, 50
- Goto, try_ctf3
- }
- else
- {
- JStoSend=javascript:window.location.replace('/market.jsp?order_date=01-01-2013&order_type=Fruits&lang=EN')
- COM_Invoke(pwb, "Navigate", JStoSend)
- Sleep, 50
- }
- return
I save this as a file with .ahk extension (file type)....Now I am trying to try with JQuery....
2) How do i do it with JQuery ?
a) I have download JQuery
b) What File extension do i save the script as...
thanks