[jQuery] get param from URL

2009-05-04 Thread gozigo_milis gozigo_milis
Dear all, Can u give me script with jquery how to get URL after # Example : index.php?p=item#id=1 How can I get id=1? Thanks

[jQuery] MULTIPLE DIV ON COUNTDOWN

2009-05-04 Thread gozigo_milis gozigo_milis
Dear all, I have function javascript like this function display_short_lived_counter(seconds, div_name) { orig_seconds = seconds; if (seconds = 0) { el = document.getElementById(div_name); if (el) { el.innerHTML = '00:00:00'; } return; } hours = 0; minutes = 0; interval

[jQuery] countdown Plugin

2009-04-29 Thread gozigo_milis gozigo_milis
I'm developing a web for online auction items. Each item will have a countdown such as 00:10:00 and will go down if the user does not make a bid. If the countdown is done then the bid will be 30 seconds. The problem is: How do I create a script so that the Auction does not connect to the server

[jQuery] GET PARAM FROM URL WITH JQUERY

2009-04-29 Thread gozigo_milis gozigo_milis
Hello all I will aks sth example : http://www.matrix.com/index.php?p=gallery#page=1 how can I get page=1 (parameter after sign #) thanks

[jQuery] Re: GET PARAM FROM URL WITH JQUERY

2009-04-29 Thread gozigo_milis gozigo_milis
(function(){ var x=get_param_name(); alert(x); }); /script I run in Google Chrome it work but in opera and IE 8 it does't work... Any other idea? On Wed, Apr 29, 2009 at 9:12 PM, Martijn Houtman martijn.hout...@gmail.comwrote: On Apr 29, 2009, at 2:45 PM, gozigo_milis gozigo_milis wrote

[jQuery] Re: countdown Plugin

2009-04-29 Thread gozigo_milis gozigo_milis
is done then the bid will be 30 seconds. I don't quite understand it On Wed, Apr 29, 2009 at 5:43 AM, gozigo_milis gozigo_milis gozigomi...@gmail.com wrote: I'm developing a web for online auction items. Each item will have a countdown such as 00:10:00 and will go down if the user does