[jQuery] searching css id

2008-04-22 Thread Sharique
Hi, What I'm trying to is that when there is certain css id appears in area. then it should hide right sidebar and change the width of center area. if($('#specialSection')) { $('#sidebar-right').hide(); $('#center').css('width','760px'); } But this code is not working

[jQuery] Re: server side jquery

2007-12-17 Thread Sharique
On Dec 16, 3:51 am, Alexandre Plennevaux [EMAIL PROTECTED] wrote: hey Sharique, joke apart, jquery is javascript: javascript is clientside, meaning it runs in the browser visiting the website. Serverside languages are PHP, ASP, ruby on rails etc... These serve the data to the visitor's

[jQuery] server side jquery

2007-12-15 Thread Sharique
Is it possible to run excute jquery on server side. -- Sharique

[jQuery] Re: Performance of jquery

2007-12-14 Thread Sharique
This is my test report. Win Xp64 bit ff Prototype 140 MooTools 135 jquery 441 opera Prototype 72 MooTools 80 jquery 183 IE6 Prototype 1556 MooTools 1104 jquery 1001 safari Prototype 409 MooTools 48 jquery 175 On Dec 11, 7:10 pm, Sharique [EMAIL PROTECTED] wrote: Pls have a look

[jQuery] Performance of jquery

2007-12-11 Thread Sharique
Pls have a look at this test. http://mootools.net/slickspeed/ Performance of JQuery of quite low as compare to other java script libraries. -- Sharique

[jQuery] Re: value of a

2007-10-11 Thread Sharique
@Juan $(a).html() is always returning text of first a, here tata @ziz alert($(this).text()); works, thanks. Why return false? -- Sharique On Oct 10, 2:30 pm, zizi [EMAIL PROTECTED] wrote: Try this way: $(a).click( function( ) { alert($(this).text

[jQuery] value of a

2007-10-10 Thread Sharique
What I want to is :When user click on a link it will show text inside the a tag. (ie. when user click in more it will show more in alert.) I have following code : - !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.01//EN http://www.w3.org/ TR/html4/strict.dtd html head

[jQuery] html select in pop up

2007-10-04 Thread Sharique
I want to display html slect list in pop-up in small frame like in yelp.com (on near text box click on Neighborhood ). --- Sharique

[jQuery] Re: jQuery Datagrid Plugin v.7

2007-10-04 Thread Sharique
Really nice work. Did it works will asp.net as well? On Oct 4, 3:15 am, reconstrukt [EMAIL PROTECTED] wrote: Hey all, I just released Just finished the initial release of my datagrid plugin. I named her Ingrid. :) Features in this release: - resizable columns - paging toolbar -

[jQuery] on hover/click change textbox to select list

2007-10-01 Thread Sharique
I have this HTml code div id=main Select input type=text id=#citylist/ a href=# City list/a p class=citylisthere /p /div and a php file (citylist.php)which return list of cities. What I want is when I click City list textbox must be changes to select list, with options from citylist.php.

[jQuery] Re: Forms with asp.net

2007-10-01 Thread Sharique
request. Are you using asp.net ajax and jQuery at the same time? I think there could be some problems doing that as they both make use of the $ Sharique Farooqui wrote: yes I mean qury form plugin. I'm trying but not getting sucess. I think it can be used as replacement of asp.net update

[jQuery] Re: Forms with asp.net

2007-09-28 Thread Sharique
yes I mean qury form plugin. I'm trying but not getting sucess. I think it can be used as replacement of asp.net update panel, what u think? On Sep 26, 7:50 pm, Danjojo [EMAIL PROTECTED] wrote: What do you mean by jQuery forms? On Sep 26, 10:49 am, Sharique [EMAIL PROTECTED] wrote: Hi

[jQuery] Forms with asp.net

2007-09-26 Thread Sharique
Hi, Did anybody has tried jquery forms with asp.net? -- Sharique

[jQuery] dynamic loading on content

2007-06-07 Thread Sharique
. and soon. How I can do this? Sharique

[jQuery] random images

2007-05-12 Thread Sharique
I want to show random images from a folder. How I can do this? Sharique

[jQuery] Re: jCarousel 0.2.0 Beta

2007-05-08 Thread Sharique
Nice work On May 8, 6:42 pm, Jan Sorgalla [EMAIL PROTECTED] wrote: Hi, i've released the a new version of jCarousel yesterday. The source code is completely rewritten and i've tried to make it more flexible and to cover most of the features requested on the mailinglist.

[jQuery] Text editer suite in jquery

2007-05-08 Thread Sharique
Is there any text editor (like FCKEditor) build using jquery. If not then why shouldn't build it. - Sharique

[jQuery] Re: Text editer suite in jquery

2007-05-08 Thread Sharique
I think jQuery is powerful enough to build such thing. On May 8, 9:19 pm, Sharique [EMAIL PROTECTED] wrote: Is there any text editor (like FCKEditor) build using jquery. If not then why shouldn't build it. - Sharique

[jQuery] Re: disabling right click

2007-04-21 Thread Sharique
, 2007 8:58 AM Sharique said: How I can disable right click on perticular element or div using jQuery. --- Sharique I don't know but let me be the first to ask, why? If you're trying to protect your content (images or viewing source) you're wasting your time since it's trivial

[jQuery] disabling right click

2007-04-20 Thread Sharique
How I can disable right click on perticular element or div using jQuery. --- Sharique

[jQuery] Re: Jquery not running ie and firefox

2007-04-14 Thread Sharique
Its working. But only with jq/jquery.pack.js not jq/jquery.js Any way Thanks, On Apr 14, 11:25 am, Leonardo K [EMAIL PROTECTED] wrote: Change this script type=text/javascript language=javascript src=jq/jquery.js / to script type=text/javascript src=jq/jquery.js/script Should work...

[jQuery] Jquery not running ie and firefox

2007-04-13 Thread Sharique
I'm newbie to jquery I have written a simple page for test. Here is the code. It only run in opera 9.2 ,in IE7 and firefox 2 it doesn't work. Why? head titleUntitled Page/title script type=text/javascript language=javascript src=jq/ jquery.js / script type=text/javascript

[jQuery] Re: Jquery not running ie and firefox

2007-04-13 Thread Sharique
I have removed jquery.js but condition is still same. When I remove jquery.pack.js this code doesn't work even opera. - Sharique On Apr 14, 8:43 am, David [EMAIL PROTECTED] wrote: Hi Sharique, It looks like you are loading jquery twice. jquery.js and jquery.pack.js are the same thing