[jQuery] IE6 png hack bug

2007-07-18 Thread Kush Murod

Hi guys,
Some of us having difficulty figuring out as to why when applying ie6png
hack onto a link, it doesn't appear as link anymore
Can anyone help us out, here is an example www.uzhana.com - contact us link
Cheers,
--Kush


[jQuery] Re: Google subscription

2007-05-24 Thread Kush Murod


Thanks Benjamin, it worked
For those of you who already use Gmail, you can forward all incoming 
mail to your desired email address too (see Settings)


[jQuery] Re: Google subscription

2007-05-24 Thread Kush Murod

The point is I *DON'T* want to use google account for this purpose

Benjamin Sterling wrote, On 5/24/2007 10:43 PM:

Go to https://www.google.com/accounts/NewAccount and register your email
address, then you will be able to join.

On 5/24/07, Bil Corry <[EMAIL PROTECTED]> wrote:



Kush Murod wrote on 5/23/2007 8:31 PM:
> I want to subscribe to this mailing using different account other then
> gmail.
> So when I go to Google it seems to force me use gmail account ONLY
> Is it true or am I getting it wrong

If you figure out a way, let me know.  I finally gave up and created 
a new

Google account with the email address I wanted to use.  Then had to move
over my calendar, my news feeds, iGoogle, etc to the new account.


- Bil








[jQuery] Interface update question

2007-05-24 Thread Kush Murod


Hi guys,
Anyone knows what's happening with Interface library updates
They haven't been updated for long time, imageBox to be specific
Or do any of you know other similar plugin
Cheers,
--Kush


[jQuery] Google subscription

2007-05-23 Thread Kush Murod


Hi guys,
I want to subscribe to this mailing using different account other then 
gmail.

So when I go to Google it seems to force me use gmail account ONLY
Is it true or am I getting it wrong
--Kush


[jQuery] Re: jQuery PNG Fix

2007-05-21 Thread Kush Murod


Hi Devin,
Good to hear, and thank you all for your help and support :)
--Kush

Devin Torres wrote, On 5/21/2007 10:15 PM:


Kush,

Go ahead and add Study Breaks Magazine (http://studybreaks.com/) to
your site's using this plugin list. :-) It seems my original question
spurred everyone into a frenzy to reinterest people in the problem
again. I'll be working on your plugin from now on, and submit any
changes I make back to you.

-Devin

On 5/21/07, weepy <[EMAIL PROTECTED]> wrote:


Ah yes it seems to assume that the transparency is either  0 or 1if
the element opacity is not 1

Not sure how to fix this.



On May 20, 3:28 pm, "Glen Lipka" <[EMAIL PROTECTED]> wrote:
> If you have a PNG-24 with some transparency on it.
> Then use $("img.png").fadeIn("slow")
> It will get this horrible black outline where the transparency in 
the PNG

> should be.
> I can try and create an example later today.
>
> Glen
>
> On 5/20/07, weepy <[EMAIL PROTECTED]> wrote:
>
>
>
> > what exactly are the 'IE7' issues ?
>
> > weepy
>
> > On May 20, 12:32 am, "Brandon Aaron" <[EMAIL PROTECTED]> 
wrote:

> > > On 5/19/07, Glen Lipka <[EMAIL PROTECTED]> wrote:
>
> > > > Ok, so is there a single jQuery plugin to include?
> > > > Im starting to get confused. :)
> > > > Do these fixes fix the problem in IE using FadeIn() where it 
becomes

> > black?
>
> > > > Glen
>
> > > No single best-of plugin yet and no these do not fix the IE7 
issues.

> > > :/  There isn't a fix for that, yet... at least not that I've come
> > > across.
>
> > > --
> > > Brandon Aaron




[jQuery] Re: jQuery PNG Fix

2007-05-20 Thread Kush Murod

Hi guys,
I've updated the plugin:

   * renamed it to pngfix();

   * added new function to reset applied hack pngunfix();

http://khurshid.com/jquery/iepnghack/

Your feedback is appreciated
--Kush

Jörn Zaefferer wrote, On 5/19/2007 9:24 PM:


Devin wrote:

This is a jQuery plugin I created to adapt pngfix.js from Bob Osola to
use the jQuery framework.
  

I guess you haven't seen this yet: http://khurshid.com/jquery/iepnghack/
While I still don't like the method-names, I like that it is able to 
fix both img-elements and background-images.


I think its time to get one-and-for-all png fix solution out the door, 
put it in the jQuery repository and on the plugin list.




[jQuery] regular expression question

2007-05-20 Thread Kush Murod


Hi guys,
I have a regular expression question
Code below returns full image path if image is png:
--
var image = $$.css('backgroundImage');
if (image.match(/^url\(["'](.*\.png)["']\)$/i)) {
   image = RegExp.$1;
}
--
If I have filter for example:
var filter = 
"progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true,sizingMethod=crop,src='images/blah.gif')";

I would like to extract src value which is images/blah.gif
How do I do that

Thanks heaps
--Kush



[jQuery] Re: IE lt 6 png hack

2007-05-04 Thread Kush Murod


Hi Jörn,

Thanks so much for the feedback and directions, your plugin made this 
plugin much better :)
I took the idea from your plugin where you detect ping background images 
set in css and apply the hack, that is great


I'll add more examples when I get some time

http://www.khurshid.com/jquery/iepnghack/

Cheers,
--Kush


[jQuery] Re: Suggestion on authentication form

2007-05-03 Thread Kush Murod


Instead of returning "Yes" or "No" just return "secure content" and 
place it into your DIV
Because imagine someone has got css disabled that means they can see 
your hidden divs

--K

Massimiliano Marini wrote:

Hi all, someone knows or has realized an authentication form calling a
external PHP file for the authentication, in order to remain to the
inside of the main page (index.php)

All I want realize is this, when I click on submit, I call the
login.php file that control user and password. What I must give back in
both of case?

I've posted my solution, it works, but I'm not sure of it, may be
there's a better way, more secure.

Any idea, suggestions, code, corrections are welcome.

My code in index.php

$(document).ready(function(){
  $('#formLogIn').ajaxForm({
success: showResponse
  });
	
  function showRequest(formData, jqForm, options) {

 var queryString = $.param(formData);
alert(queryString);
return true;
  }
	
  function showResponse(responseText, statusText) {

 if(responseText == "Yes") {
// Show/Hide DIV, I'no not problem to implement that :)
 }
 
 if(responseText == "No") {

alert("It does not exist");
 }
  }


Username : 
Password : 



login.php contains a simple query to a DB and returns :
echo "Yes" // if exists
echo "No" // if not exists

--
Massimiliano Marini - http://www.linuxtime.it/massimilianomarini/
"It's easier to invent the future than to predict it."  -- Alan Kay
  


--
Kush Murod, Web applications developer
Sensory Networks
[E] [EMAIL PROTECTED]
[W] www.sensorynetworks.com
[T] +61 2 8302 2745
[F] +61 2 9475 0316
[A] Level 6, 140 William Street East Sydney 2011

=

 This message is confidential and is intended for the listed
 recipients only. Any use of this message by persons other than
 the listed recipients is prohibited. If you are not on the
 recipients list, please notify the sender and delete this
 message immediately.

=

EMAIL NOTICE: This message and any attachment(s) may contain confidential 
information and may be subject to copyright or other intellectual property 
protection. If you are not the intended recipient, you are not authorized to 
use, disclose, distribute or copy any part of this message including 
attachment(s). If you have received this message in error, please notify the 
sender immediately and delete all copies. Any views expressed in this message 
are those of the individual sender and not necessarily that of the company. 
Before opening any attachment(s), please check for viruses and other defects.



[jQuery] Re: IE lt 6 png hack

2007-05-03 Thread Kush Murod
Thanks,  I'll be maintaining it as I get feedbacks
--Kush

[EMAIL PROTECTED] wrote:
> Nice.
>
> Having gone through the same process of looking this up several times
> over the past few months, this is a welcome solution.
>
> *
>
>
>   
>> http://khurshid.com/jquery/iepnghack/
>> 
>
>
> >
>   

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"jQuery (English)" group.
To post to this group, send email to jquery-en@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/jquery-en?hl=en
-~--~~~~--~~--~--~---



[jQuery] Re: Bug in jQuery implementation of EXT, works with other libraries.

2007-05-03 Thread Kush Murod


Sam,

Don't know where you are getting numbers from but

Core JQuery is ONLY 60kb (uncompressed)
Common plugin such as 'form' 31kb (uncompressed)

Even combined size is nowhere 100kb, size drops once you compress js

--Kush


[jQuery] IE lt 6 png hack

2007-05-03 Thread Kush Murod


Hi guys,

Every time I had to use png image in IE lt 6 I had to look up old emails.
So I decided to put together initial documentation, example and plugin 
for everybody to use, including for myself.

So together we could make it even better, your feedback is appreciated.

http://khurshid.com/jquery/iepnghack/

Cheers,

--Kush



[jQuery] Re: BlockUI - IE block() offset problem, calculated incorrectly maybe?

2007-04-30 Thread Kush Murod


Hi Mike,
Sorry to bug all the time :(
FF looks fine, but in IE overlay is not positioned properly
http://khurshid.com/jquery/sandbox/blockUI/
Cheers,
Kush

Mike Alsup wrote:


Yes, I know.  But still, blocking the border seems like it really
shouldn't matter.  Is this causing you problems?

Mike


On 4/30/07, Kush Murod <[EMAIL PROTECTED]> wrote:


 I meant it is blocked in IE but not in FF
 -Kush


 Mike Alsup wrote:
 Kush,

The opacity increases if you call block over and over without calling
unblock. That is not new. That doesn't happen in my demo because I
call unblock before calling block.

Yes, I noticed that the border is also blocked in IE6, but I don't see
why that is a problem. Your page looks good to me.

Mike



 I have replaced with the version you provided
 It is even weirder now in IE, target border also getting blocked and 
the

more you click 'block' the more opacity increases
 http://khurshid.com/jquery/sandbox/blockUI/






[jQuery] Re: BlockUI - IE block() offset problem, calculated incorrectly maybe?

2007-04-30 Thread Kush Murod

Sorry I meant to say border is also blocked in IE but not in FF

Kush Murod wrote:

I meant it is blocked in IE but not in FF
-Kush

Mike Alsup wrote:
  

Kush,

The opacity increases if you call block over and over without calling
unblock.  That is not new.  That doesn't happen in my demo because I
call unblock before calling block.

Yes, I noticed that the border is also blocked in IE6, but I don't see
why that is a problem.  Your page looks good to me.

Mike

  


 I have replaced with the version you provided
 It is even weirder now in IE, target border also getting blocked and the
more you click 'block' the more opacity increases
 http://khurshid.com/jquery/sandbox/blockUI/

  
  



  


[jQuery] Re: BlockUI - IE block() offset problem, calculated incorrectly maybe?

2007-04-30 Thread Kush Murod
I meant it is blocked in IE but not in FF
-Kush

Mike Alsup wrote:
> Kush,
>
> The opacity increases if you call block over and over without calling
> unblock.  That is not new.  That doesn't happen in my demo because I
> call unblock before calling block.
>
> Yes, I noticed that the border is also blocked in IE6, but I don't see
> why that is a problem.  Your page looks good to me.
>
> Mike
>
>   
>>  I have replaced with the version you provided
>>  It is even weirder now in IE, target border also getting blocked and the
>> more you click 'block' the more opacity increases
>>  http://khurshid.com/jquery/sandbox/blockUI/
>> 
>
> >
>   


[jQuery] Re: BlockUI - IE block() offset problem, calculated incorrectly maybe?

2007-04-29 Thread Kush Murod

Hi Mike,

I have replaced with the version you provided
It is even weirder now in *IE*, target border also getting blocked and 
the more you click 'block' the more opacity increases

http://khurshid.com/jquery/sandbox/blockUI/

--Kush

Mike Alsup wrote:


This should be fixed now.

http://dev.jquery.com/browser/trunk/plugins/blockUI/jquery.block.js?format=txt 



Mike


On 4/29/07, Mike Alsup <[EMAIL PROTECTED]> wrote:

Kush,

Try adding this as the last statement in the (i < 2) conditional block:

if (!full) s.setExpression('left', '0 -
parseInt(jQuery(this.parentNode).css("borderLeftWidth"))');


Mike



On 4/29/07, Kush Murod <[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> I've found that if your target element has border set and you block()
> it, in IE it looks weird
> Possible bug, below demo page
> http://khurshid.com/jquery/sandbox/blockUI/
>
> Cheers,
> --Kush
> P.S. @Mike Alsup - great plugin and code is clean, well documented,
> great to have you here
>



--
Kush Murod, Web applications developer
Sensory Networks
[E] [EMAIL PROTECTED]
[W] www.sensorynetworks.com
[T] +61 2 8302 2745
[F] +61 2 9475 0316
[A] Level 6, 140 William Street East Sydney 2011

=

 This message is confidential and is intended for the listed
 recipients only. Any use of this message by persons other than
 the listed recipients is prohibited. If you are not on the
 recipients list, please notify the sender and delete this
 message immediately.

=

EMAIL NOTICE: This message and any attachment(s) may contain confidential 
information and may be subject to copyright or other intellectual property 
protection. If you are not the intended recipient, you are not authorized to 
use, disclose, distribute or copy any part of this message including 
attachment(s). If you have received this message in error, please notify the 
sender immediately and delete all copies. Any views expressed in this message 
are those of the individual sender and not necessarily that of the company. 
Before opening any attachment(s), please check for viruses and other defects.



[jQuery] BlockUI - IE block() offset problem, calculated incorrectly maybe?

2007-04-29 Thread Kush Murod


Hi,

I've found that if your target element has border set and you block() 
it, in IE it looks weird

Possible bug, below demo page
http://khurshid.com/jquery/sandbox/blockUI/

Cheers,
--Kush
P.S. @Mike Alsup - great plugin and code is clean, well documented, 
great to have you here


[jQuery] BlockUI stops anchors from appearing in the url

2007-04-22 Thread Kush Murod


Hi,

I wanted to pass anchors to url so they would be bookmarkable just like 
tabs plugin. For some reason bookmark never gets passed to url.

Then after some time I've uncommented ajaxStart and ajaxStop like so

$().ajaxStart($.blockUI).ajaxStop($.unblockUI);

Only after this my bookmark values started passing into url.
My guess is blockUI prevents bookmarks to be passed on as soon as ajax 
starts


Can anyone explain the situation.

Cheers,
--Kush



[jQuery] how to unbind hover function

2007-04-20 Thread Kush Murod


Hi,

I know that you can unbind events of elements $('ele').unbind();
Questions is how do you unbind hover function attached to element 
$('ele').hover(...


Cheers,
--Kush


[jQuery] Re: Form + BlockUI plugin

2007-04-19 Thread Kush Murod


I'll upload a sample as quick as possible
--Do you have a sample page?


[jQuery] Re: Form + BlockUI plugin

2007-04-19 Thread Kush Murod


Hi Mike,
my form has got only  type=file elements
so I just did a test and discovered that
as long as I have type=file elements in my form it doesn't work properly
my guess is something goes wrong when when inserting form that has got 
type=file into blockUI

maybe a bug?
--Kush


[jQuery] Re: Form + BlockUI plugin

2007-04-19 Thread Kush Murod


actually that is exactly what I am doing, I have checked already as you 
said, if moved the form into blockUI

:(
this is really weird behaviour I must say

Mike Alsup wrote:


Kush,

When you do this:  $.blockUI(form)  the plugin adds your form to the
blockUI message element.  This means the form is implicitly removed
from the DOM and then reinserted in a different position.  Try binding
the form after you block.  Maybe something like:

$.blockUI(form);
$(form).ajaxForm(options);

Mike


On 4/19/07, Kush Murod <[EMAIL PROTECTED]> wrote:


Hi guys,

I am placing a form into blockUI like so
$.blockUI(form) and then attaching form plugin like so 
.ajaxForm(options);

Form pluging works perfect as long as it is not used with BlockUI, but
as soon as you insert it into BlockUI submit does not really work

--Kush



[jQuery] Re: Form + BlockUI plugin

2007-04-19 Thread Kush Murod


Also note when use xxx.block(form) form submits ok

Kush Murod wrote:

I am placing a form into blockUI like so
$.blockUI(form) and then attaching form plugin like so 
.ajaxForm(options);
Form pluging works perfect as long as it is not used with BlockUI, but 
as soon as you insert it into BlockUI submit does not really work

--Kush


[jQuery] Form + BlockUI plugin

2007-04-19 Thread Kush Murod


Hi guys,

I am placing a form into blockUI like so
$.blockUI(form) and then attaching form plugin like so .ajaxForm(options);
Form pluging works perfect as long as it is not used with BlockUI, but 
as soon as you insert it into BlockUI submit does not really work


--Kush


[jQuery] Re: BlockUI plugin: message not centered once width or padding is given

2007-04-18 Thread Kush Murod


Hey Mike, you rock dude, :)
You need to manage the margins yourself, the plugin doesn't do it for 
you.  Try this:

$.blockUI({ width:'450px;', marginLeft:'-250px'});


[jQuery] BlockUI plugin: message not centered once width or padding is given

2007-04-18 Thread Kush Murod

Hi guys,

I have a problem where if  I  specify message box css like so

|$.blockUI({ padding:'50px'});
OR
$.blockUI({ width:'450px'});
|

your message box is not centered anymore, but more to the right and bottom

Has anyone encountered problem like this one

--Cheers,
Kush


[jQuery] Re: jQuery Powered Sites - More Sites Added.

2007-04-11 Thread Kush Murod


Found pretty big one :)
http://www.bbcgoodfood.com/


[jQuery] can you do this with JQuery

2007-04-11 Thread Kush Murod


Hi,
Is there a JQuery plugin that can accomplish this sort of behavior
http://luddep.se/new/
--Kush


[jQuery] Interface updates

2007-04-11 Thread Kush Murod


Hi,

Just wondering as to when Interface updates/fixes are going to be released.
I do release guys could  be very busy,  but little heads up would be 
appreciated.


--Kush


[jQuery] Web 2.0 is vulnerable to attack

2007-04-02 Thread Kush Murod


Hi guys,

Article below says all big JS Libraries are vulnerable including JQuery
I didn't quite understand the article, but was hoping for some feedback 
on it


http://www.cbronline.com/article_news.asp?guid=484BC88B-630F-4E74-94E9-8D89DD0E6606 



Cheers,

--
Kush Murod, Web applications developer
Sensory Networks
[E] [EMAIL PROTECTED]
[W] www.sensorynetworks.com
[T] +61 2 8302 2745
[F] +61 2 9475 0316
[A] Level 6, 140 William Street East Sydney 2011



[jQuery] Re: Trick to pass input file

2007-04-02 Thread Kush Murod


well looks like next plugin improvement for form plugin, hey Mike Alsup :)

macm wrote:

Hi

I am trying upload without refresh so I tried

http://the-stickman.com/web-development/javascript/upload-multiple-files-with-a-single-file-element/

Works like a charm but:

Browser Peculiarities

* Internet Explorer and Netscape do not use the VALUE attribute as
the default contents of the input area. Any default value set via HTML
is not usable via scripting and the DOM as well (hence it is not
listed as 'supported' in any of the browsers.) If a user enters text
in the field however, that value is then reachable via the DOM as it
normally would be for a normal INPUT field (via the .value property.)
The reason for this behavior would presumably be to ensure the
security/safety of users against malicious authors. Opera displays the
default VALUE attribute value and submits it as well (although it
prompts for confirmation on submit if you have not altered that
value.)

from: http://www.blooberry.com/indexdot/html/tagpages/i/inputfile.htm


I heard that exist a trick about this and I would like to know who can
tell me.

So How I have paths from example above.

Something like that => c:/mydocuments/myfile.gif

How can I insert this in input file element? (I know how can I insert
but the problem isnt accept like I said before)

If Input file dont accept value=" " how can I insert the path into
input element?

Regards

macm

  


[jQuery] Re: Form plugin: file upload question

2007-04-02 Thread Kush Murod


Thanks Mike, I still had old form script included down below, my bad :)

Mike Alsup wrote:



In other words I can't see any file being uploaded. I'll post an example
if needed, let me know.


It's up to you to mange the uploaded files in your php script.  If you
don't move them with move_uploaded_file() they are deleted after the
script completes.

Mike


[jQuery] Re: Interface imageBox IE case

2007-04-02 Thread Kush Murod


thanks Rob

Robert O'Rourke wrote:


Hi Kush,

   I ran into that problem too but because of a different name i'd 
used for one of my divs. In my case it was #gallery.
Apparently IE creates global variables for the DOM that can easily 
conflict with variable names present in the plugins (i think its 
something like that anyway). There's a bug ticket for it already but 
it's a tricky one. You just have to rename your divs for now until 
some of that nice variable scoping is introduced. Something like 
#wrapper might be better.


   Take it easy,
   Rob


Kush Murod wrote:


Anyone?

Kush Murod wrote:


Hi,

Seems like I found the problem but can't explain why:

In my html I've got 
Apparently that tag was causing problem in IE, because as soon as 
I're renamed container to containerr all went smooth.


Having said that I'd like to understand why there was a naming 
conflict.

Response is appreciated

--Kush

Kush Murod wrote:


Hi guys,

Normally interface imageBox works fine,
However in this case http://www.khurshid.com/v2/ in IE throws 
errors and I am finding hard to find out what is causing it.

It is very simple page.

Thanks heaps.

--Kush










[jQuery] Form plugin: file upload question

2007-04-02 Thread Kush Murod


Hi,

Question:

This new feature of form plugin file upload form Mike Alsup, is it 
supposed to actually perform file uploads?
If yes isn't supposed to upload any file into server? When I look at my 
php script I can't see any file uploads.


In other words I can't see any file being uploaded. I'll post an example 
if needed, let me know.


Cheers,
--Kush




[jQuery] interface imagebox overlay is not complete in FF

2007-04-02 Thread Kush Murod


Hi,

Interface imagebox does not form full overlay in FF, I mean once overlay 
appears it only covers area that is visible to you, the rest (once you 
scroll) is not covered in FF.

Maybe you could find out how Mike Alsup goes around it with his blockUI.

Here is the demo http://www.khurshid.com/v2/

--Kush



[jQuery] Re: Interface imageBox IE case

2007-04-02 Thread Kush Murod


Anyone?

Kush Murod wrote:


Hi,

Seems like I found the problem but can't explain why:

In my html I've got 
Apparently that tag was causing problem in IE, because as soon as I're 
renamed container to containerr all went smooth.


Having said that I'd like to understand why there was a naming conflict.
Response is appreciated

--Kush

Kush Murod wrote:


Hi guys,

Normally interface imageBox works fine,
However in this case http://www.khurshid.com/v2/ in IE throws errors 
and I am finding hard to find out what is causing it.

It is very simple page.

Thanks heaps.

--Kush




[jQuery] Re: Interface imageBox IE case

2007-04-01 Thread Kush Murod


Hi,

Seems like I found the problem but can't explain why:

In my html I've got 
Apparently that tag was causing problem in IE, because as soon as I're 
renamed container to containerr all went smooth.


Having said that I'd like to understand why there was a naming conflict.
Response is appreciated

--Kush

Kush Murod wrote:


Hi guys,

Normally interface imageBox works fine,
However in this case http://www.khurshid.com/v2/ in IE throws errors 
and I am finding hard to find out what is causing it.

It is very simple page.

Thanks heaps.

--Kush


--
Kush Murod, Web applications developer
Sensory Networks
[E] [EMAIL PROTECTED]
[W] www.sensorynetworks.com
[T] +61 2 8302 2745
[F] +61 2 9475 0316
[A] Level 6, 140 William Street East Sydney 2011



[jQuery] Re: Trouble with selecting dynamicly made div's using blockui

2007-04-01 Thread Kush Murod


Hi Tom,

I'd normally do this, not sure if it is correct way of doing things but 
it works for me

If id you are passing is someID to BlockLog. notice this '#'+
...

$('#'+someID).click(function() {

..
Give it a try
--Kush

Tom Shafer wrote:

I am trying to select different divs, each is given a unique id

and im using this to apply a effect to it
function BlockLog(id) {
 $(id).click(function() {
$('#blockMe').unblock().block('Processing...',
{ border: '3px solid #a00' });
});
}

with this to call it
Your Turn

with a div like this

test

  


--
Kush Murod, Web applications developer
Sensory Networks
[E] [EMAIL PROTECTED]
[W] www.sensorynetworks.com
[T] +61 2 8302 2745
[F] +61 2 9475 0316
[A] Level 6, 140 William Street East Sydney 2011



[jQuery] Interface imageBox IE case

2007-04-01 Thread Kush Murod


Hi guys,

Normally interface imageBox works fine,
However in this case http://www.khurshid.com/v2/ in IE throws errors and 
I am finding hard to find out what is causing it.

It is very simple page.

Thanks heaps.

--Kush


[jQuery] Interface ScrollToAnchors is not available for selected download

2007-04-01 Thread Kush Murod


Hi guys,

I can't find ScrollToAnchors download selection, only ScrollTo which is 
not same as ScrollToAnchors I think

I don't want to download whole interface library but only the ones I need.

--Kush