gt;
> problem is it highlight every row even header on hovering..is there
> way to not highlight only,,can i add condition that if table tr
> is th then background is #ee..i want to do without class
>
> pls perdon my english.
>
--
Isaak Malik
Web Developer
be it can support JQuery
> in same way.
>
> thanks for support.
> regards.
>
--
Isaak Malik
Web Developer
you'll notice*
On Fri, Dec 5, 2008 at 5:24 PM, Isaak Malik <[EMAIL PROTECTED]> wrote:
> If you read the entire tutorial you'll noticed that he mentions it's just
> an interface and he has plans to integrate it with
> plusmusica<http://www.plusmusica.com/>(req
an-amazing-music-player-using-mouse-gestures-hotkeys-in-jquery/
> >
> >
> > Should there be music too? It is silent for me FF3 & Safari in OSX?
> >
> > --
> > Mika Tuupola
> > http://www.appelsiini.net/
> >
> >
>
>
>
> --
>
> []´s Jean
> www.suissa.info
>
> Ethereal Agency
> www.etherealagency.com
>
--
Isaak Malik
Web Developer
:first').text();
If I'm right then the first one contains a bug.
--
Isaak Malik
Web Developer
indow" hyperlink in the popup i want to hide this
> popup.
> But not able to hide this.
> I tried this, but not working
> $(this).parent('.popup_window_wrapper').css({'display':'none'});
>
> popup_window_wrapper: Is the class of popup div.
>
> Please help me.
>
--
Isaak Malik
Web Developer
above I want to be able to change the rowSpan
> > on the td that surrounds it. I cannot seem to get it right.
>
> try this:
> $('#r2').parent().parent().attr('rowspan', '1');
--
Isaak Malik
Web Developer
rounds it. I cannot seem to get it right.
>
> Here is the latest thing I tried:
>
> $("#r"+id).prev("td").attr("rowSpan","1");
>
> I also tried:
>
> $("#r"+id).prev(".rsp2 td").attr("rowSpan","1");
>
> Thanks!
>
> Randy
>
$('#r2').prevAll('rsp2').attr("rowspan","1");
--
Isaak Malik
Web Developer
y that even the
not-so-brightest think it's simple.
Leave MySQL for last, learn the PHP basics first then take the next step. I
also suggest you use an IDE (Eclipse, NetBeans, Komodo, etc.) that supports
calltips for the built-in functions, this can save you a lot of time at the
beginning.
w.pirolab.it/pirobox/js/pirobox.js ??
> unreadable?
>
> I changed all the original variables and removed all the spaces to get
> the script more lightweight.
> Just this :)
>
> On 12 Nov, 01:47, "Isaak Malik" <[EMAIL PROTECTED]> wrote:
> > I just pee
is to leave my name up there in
> the js, and if you want, a link back to my page :)
>
> Diego
>
> On 12 Nov, 01:38, "Isaak Malik" <[EMAIL PROTECTED]> wrote:
> > Oh, I didn't see the unpacked version and it was right under it... Thanks
> :)
> >
> &g
t; script,and when i open explorer i'm really scared of what can
> happen..
> sure that is open source, you can download both version, packed and
> unpacked,just click the anchor 'download' on the nav.
>
> Diego
>
>
> On 12 Nov, 01:27, "Isaak Malik&quo
27;s ok in opera safari e chrome.
> The best performance is obviously in firefox, then chrome, safari,
> opera, IE6, and last ie7.
>
> Diego
>
> On 12 Nov, 00:59, "Isaak Malik" <[EMAIL PROTECTED]> wrote:
> > Very interesting piece of work :), have you performed cros
a['customerid'] = 1;
>
> data['item[0][addonid]'] = 456;
> data['item[0][itemid]'] = 12;
> data['item[0][qty]'] = 1;
> data['item[0][freq]'] = 1;
>
> and throw these directly into $.post, such as:
>
> $.post( url, data );
>
> But for some reason the posted variables never make it. Can anyone
> help?
>
--
Isaak Malik
Web Developer
lab.it/pirobox/
>
> I developed this plugin, by studying the docs.jquery, it's amazing
> what you can do with this library.
>
> Tnx to all the jquery developers.
>
> Diego Valobra
--
Isaak Malik
Web Developer
check if #content1 is a visible element. In other words: see that you
didn't use display: none on it.
--
Isaak Malik
Web Developer
t;).load("Loading data, please wait...");
});
Which will work if you change it into this:
$('#content1').ajaxSend(function(e,r,s)
{
$(this).html('Loading data, please wait...');
}
This will insert the "Loading data, please wait..." inside the tag
withid='content1' before
an AJAX request is sent.
--
Isaak Malik
Web Developer
n you explain the reasoning behind the
> approach please?
>
> Thanks again.
>
>
> On Oct 28, 9:50 am, "Isaak Malik" <[EMAIL PROTECTED]> wrote:
> > It's much wiser to use Please turn Javascript
> on
> > to view the content. instead of a JavaScript fun
css
> declaration. You could try $('p.jsoff').remove() instead.
>
> --Karl
>
> Karl Swedberg
> www.englishrules.com
> www.learningjquery.com
>
>
--
Isaak Malik
Web Developer
uble click in the field, the expected
> behavior occurs.
>
> On Oct 22, 10:41 am, "Isaak Malik" <[EMAIL PROTECTED]> wrote:
> > I have no idea which autocomplete plugin you're using but does the
> following
> > work for you?
> >
> > $(function
L PROTECTED]> wrote:
>
> Is there a way to force a field to do a search on focus of the input?
> (I basically want the user to be suggested a default set of items
> before typing anything.
>
> I tried this
> $("#category").autocomplete("do_search.php",{max:100,minChars:0,delay:
> 10});
>
>
--
Isaak Malik
Web Developer
except that when I make them visible again, the layout
> changes ! The elements in the div are no longer next to each other.
> Now there is the first select, then the 3 buttons underneath, then the
> second select underneath the 3 buttons.
>
> Why .css("display", "none") changes the layout ?
--
Isaak Malik
Web Developer
t/jQueryDocumentation.7z
> Program to create:
> http://www.puntoequis.com.ar/aktive/soft/jQueryDocs-Creator.7z
>
> I will post updates in my page (in spanish)
>
> http://www.puntoequis.com.ar/npx/default.aspx?VIEWENTRY050057
>
> Jonatan
>
--
Isaak Malik
Web Developer
; the ready method. Is there a compelling reason for this? Or will
> $(document).ready() perform as well?
>
> Or perhaps I'm mis-understanding what the newer format is being used for?
>
> Thanks for any tips.
>
> Shawn
>
--
Isaak Malik
Web Developer
ab <[EMAIL PROTECTED]> wrote:
>
> The problem is, they are never "shown".
>
> Fancy Box takes the html from the original hidden div, then presents
> that to the user. I cannot figure out a way to apply the fix to this
> png on-the-fly??? :-(
>
> On Oct 20
on images that are displayed. I have some hidden
> divs (display:none) that contain png files that are reveled when
> needed. But they are missing when I show() them.
>
> Any ideas what is happening to them?
--
Isaak Malik
Web Developer
ple please?
>
> $('element-id')[id] = newid
>
> doesn't quite work. :-)
>
> Thanks!
>
--
Isaak Malik
Web Developer
able to get them
> work.
> > > > Can someone help me to understand where I am doing wrong?
> >
> > > > Herehttp://www.bonsai-studio.net/live_preview/pro-001/youcanfind a
> > > > sample of the page I am trying to round corners.
> >
> > > > I e
cript compiled into one single minified
> file. This is left to the responsibility of the web developer to decide
> that according to its own project, not to this gentleman's fine download
> application, of course.
>
> On Sun, Oct 12, 2008 at 12:25 PM, Isaak Malik <[EMAIL PR
gt; I'm still making changes to it, theres a larger description, and some
> notes on stuff I'm going to change on my site over at:
> http://stuartloxton.com/creating-a-really-small-jquery/
>
> All feedback is welcome!
>
> Thanks,
> Stuart
>
--
Isaak Malik
Web Developer
lo,
>
> Can you please tell me how can I have all radio buttons set to "yes"
> or "no"?
>
> Thanks.
>
--
Isaak Malik
Web Developer
Hey,
>
> few days ago I started to develop with jQuery - and I love it!
>
> I'd like to know what tool was used to pack jquery.
>
> Another thing: In the last days docs.jquery.com was down several
> times. Is there any mirror?
>
> Manuel
>
--
Isaak Malik
Web Developer
any assistance that would help the
> display resolution program we have when making websites.
>
> I hope future web browsers would do this for us that we just need to
> make one website layout and the browser would resize our website to
> fit the clients resolution.
>
--
Isaak Malik
Web Developer
de (jquery or
> otherwise) that works in Opera? I've found that the contextmenu plugin
> (http://www.trendskitchens.co.nz/jquery/contextmenu/) works great in
> IE and Firefox (though has problems being assigned to hyperlinks), but
> none appear to work in Opera.
>
> Cheers,
> Sean
>
--
Isaak Malik
Web Developer
undefined" on line 15
>
>
> I like the idea though, kinda like a VCR controlled slideshow
>
--
Isaak Malik
Web Developer
> I have to save some of the settings of my Users with the cookies ,
> I've done this before with PHP Cookie Header .. right now I was
> Wondering If I could that with jQuery instead of PHP ... which one is
> Practical ... is there any Example for the jQUery cookie ...
> thanks
is
> > getting complicated.
> >
> > How are you solving this problem? Is a good tutorial or info out
> > there? I have searched google and couldnt find a useful answer.
> >
> > thank a lot
> > yavuz
>
--
Isaak Malik
Web Developer
?
> > --
> > View this message in context:
> http://www.nabble.com/slideToggle-flickering-in-Firefox-%28jQuery-ver...
> > Sent from thejQueryGeneral Discussion mailing list archive at Nabble.com.
>
--
Isaak Malik
Web Developer
improvements in functionality or performance, please
> let me know.
>
> The plugin can be found here:
> http://plugins.jquery.com/project/iFixPng2
>
> Cheers!
> Yereth
>
>
--
Isaak Malik
Web Developer
image and deleted to
> reduce the size of the image?? What do you guys do on displaying your
> website that would fit every display settings??
>
--
Isaak Malik
Web Developer
ount").is(":checked")){
> > > jQuery('div.showHideAccountDetails').show();
> > > }else{
> > > jQuery('div.showHideAccountDetails').hide();
> > > }
> >
> > > }
> >
> > > But in some situations the variable 'createNewAccount' does not exist,
> > > as the form element is not shown on the page. How can I test the
> > > variable first? I'm thinking of something along the lines of:
> >
> > > if ( isDefined ( "#createNewAccount") ) { // continue... }
> >
> > > Many thanks for any help!
>
--
Isaak Malik
Web Developer
e $('img#someID').show().
On Thu, Jun 19, 2008 at 2:53 PM, F1LT3R <[EMAIL PROTECTED]> wrote:
>
> Am I right in thinking jQuery can not selected the
> element?
>
--
Isaak Malik
Web Developer
issue, or knows why?
> >
> > > the test is here:http://m2.lab-au.com/ (choose 'projects').
> >
> > > thanks for your feedback,
> >
> > > Alexandre
> >
> > > --
> > > Alexandre Plennevaux
> > > LAb[au]
> >
> > >http://www.lab-au.com
>
--
Isaak Malik
Web Developer
jQuery('div.showHideAccountDetails').hide();
>}
> }
>
> But in some situations the variable 'createNewAccount' does not exist,
> as the form element is not shown on the page. How can I test the
> variable first? I'm thinking o
eytail] yabadabadoo
> > > [dot] .com
> > > Now I want to replace the text [monkeytail] with some other text.
> >
> > > Is there a simple solution that I can get the monkeytail text and
> > > replace it with something else?
> >
> > --
> > Isaak Malik
> > Web Developer
>
--
Isaak Malik
Web Developer
se to select entries. You can disable
> > > keyboard support by using a element instead of an
> element
> > > and then clicking "inside" would always cause the same menu as dropdown
> > > arrow.
> >
> > > 2) The second issue (with the large vertical spacing) seems to be
> related to
> > > the Chili plug-in (which is used for syntax highlighting.) The problem
> seems
> > > to be random and only occurs when Firebug reports Chili errors (at
> least
> > > that's the only time I've seen the behavior.) I've never seen the
> behavior
> > > on a page that doesn't have the Chili plug-in.
> >
> > > -Dan
>
Many thanks
--
Isaak Malik
Web Developer
ww.nabble.com/Modify-ID-attribute-tp18010518s27240p18010518.html
> Sent from the jQuery General Discussion mailing list archive at Nabble.com.
>
>
--
Isaak Malik
Web Developer
tip in Firefox 3, it blocks the
> browser with a "script is running slowly" message.
>
> i use the default (rel="url") ajax call. The error message points to line
> 503
>
> anyone has the issue ?
>
> thanks,
>
> Alex
>
> Alexandre Plennevaux
>
>
--
Isaak Malik
Web Developer
is the best way? PHP -> JS I use json, but for JS->PHP?
>
>
> --
> Asterisk ext: 13502
> Asterisk server: null-lab.homelinux.org
> GPG Key ID 0x9ED66FA7
> Key Fingerprint: 3674 956F E2DF DC3B 694C 5281 6D57 5656 9ED6 6FA7
--
Isaak Malik
Web Developer
t;
> Thanks,
> Miguel
>
--
Isaak Malik
Web Developer
or hide or disable the submit button or it behaviour
> > when the first submit happend?
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/prevent-more-than-one-submit-in-ajaxsubmit-tp17985286s27240p17987588.html
> Sent from the jQuery General Discussion mailing list archive at Nabble.com.
>
>
--
Isaak Malik
Web Developer
; and
> > whatever animations that are smooth and fluid in FF2 are staggering in
> FF3
> > RC1.
> >
> > Does anybody have the same issue, or knows why?
> >
> > the test is here:http://m2.lab-au.com/ (choose 'projects').
> >
> > thanks for your feedback,
> >
> > Alexandre
> >
> > --
> > Alexandre Plennevaux
> > LAb[au]
> >
> > http://www.lab-au.com
>
--
Isaak Malik
Web Developer
t.
> >
> > I think the overall effect is pretty impressive and I've never seen a UI
> > control like it (especially considering it supports keyboard entry.)
> >
> > -Dan
>
And one more remark: when I click in the text area of the select element the
drop down list appears but I'm not able to choose anything, is this behavior
expected?
--
Isaak Malik
Web Developer
developers here in the company talking
> about best practices;
>
> Best regards
>
--
Isaak Malik
Web Developer
> I have this: contact [monkeytail] yabadabadoo
> [dot] .com
> Now I want to replace the text [monkeytail] with some other text.
>
> Is there a simple solution that I can get the monkeytail text and
> replace it with something else?
>
--
Isaak Malik
Web Developer
..just so you know.
>
>
>
> andy
>
> ------
> *From:* jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] *On
> Behalf Of *Isaak Malik
> *Sent:* Wednesday, June 18, 2008 8:33 AM
>
> *To:* jquery-en@googlegroups.com
> *Subject:* [jQuery] Re: onR
r userbase.)
>
>
>
> -Dan
>
>
> --
>
> *From:* jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] *On
> Behalf Of *Isaak Malik
> *Sent:* Wednesday, June 18, 2008 11:46 AM
> *To:* jquery-en@googlegroups.com
> *Subject:* [jQuery] Re: Ne
ct is pretty impressive and I've never seen a UI
> control like it (especially considering it supports keyboard entry.)
>
> -Dan
>
>
--
Isaak Malik
Web Developer
gt; wrote:
>
> > Ok, will manage to squeeze the Microsoft Bug
> >
> > What about the hover issue?
>
>
> I don't see any hover issue. What do you see?
>
--
Isaak Malik
Web Developer
take a look at the ContextMenu
>> plugin, but it's a shame that jQuery doesn't offer a rightclick method.
>> Besides...who really cares about Opera?
>>
>>
>> :)
>>
>> --
>> *From:* jquery-en@googlegroups.com [
't support it? Interesting. I'll take a look at the ContextMenu
> plugin, but it's a shame that jQuery doesn't offer a rightclick method.
> Besides...who really cares about Opera?
>
>
> :)
>
> ------
> *From:* jquery-en@googlegroups.
gt;
> Is there now, or are there any plans to have, an onRightClick method
> in jQuery?
>
> I found a ContextMenu plugin but it was last updated almost a year
> ago.
>
> Alternately, are there any other plugins out there that would offer
> ContextMenu support for right clicking?
>
--
Isaak Malik
Web Developer
flawed. There are thousands
> (literally) of UA strings, yet they are not guaranteed to be unique
> for any particular browser or version.
>
> Do a search for user agent string databases, there are quite a few of
> them.
>
>
>
> --
> Rob
>
--
Isaak Malik
Web Developer
Try this out:
if ( !/[a-z0-9\-_]/i.test( $("[EMAIL PROTECTED]'firstname']").val() ) )
alert('Wrong!');
On 6/16/08, shapper <[EMAIL PROTECTED]> wrote:
>
>
> Hello,
>
> How can I check the value inserted in an Input using a RegEx
> exp
pup-bubbles/
> But instead of the opacity transition and the upward "puff," I'd like
> the panel to just smoothly slide upward.
>
> Thanks in advance for any suggestions or advice!
>
> Erik
>
--
Isaak Malik
Web Developer
> --Klaus
>
>
>
> On 15 Jun., 18:34, "Isaak Malik" <[EMAIL PROTECTED]> wrote:
> > Oups, it was a mistake at my side, corrected code:
> >
> > $(function()
> > {
> > $('#tabCont > ul').tabs({fx: {opacity: 'toggle'
Oups, it was a mistake at my side, corrected code:
$(function()
{
$('#tabCont > ul').tabs({fx: {opacity: 'toggle', duration: 500}, cookie:
{expires: 7, path: '/'}});
});
--
Isaak Malik
Web Developer
27;}}});
});
Should this be enough to gain the wanted result or do I need to add custom
code which handles the automated selecting on page reload?
Many thanks
--
Isaak Malik
Web Developer
> options.
>
> aim - Billhillydude2k
> msn - [EMAIL PROTECTED]
>
--
Isaak Malik
Web Developer
be somewhat redundant to me.
>
> In short I am looking for the most simple built-in syntax to access
> form values, like prototype's $F().
> This means that querying option lists should return a list of selected
> values (or texts), and text areas should work also.
>
>
> Thanks
> Martin
>
--
Isaak Malik
Web Developer
;
> > Thanks in advance,
> >
> > Howie
> >
> > [0] actually, not quite, thanks to the clunky scripting language in
> > the monitoring system, so I tweak it afterwards.
>
--
Isaak Malik
Web Developer
Swann <[EMAIL PROTECTED]> wrote:
> > I'm based in Ireland and I find that accessing the docs is very slow.
> > Are there any European based mirrors for the documentation?
> >
> > If not are you open to the idea of partnering with European Based
> > hosting companies for mirroring the docs?
>
--
Isaak Malik
Web Developer
ean based mirrors for the documentation?
>
> If not are you open to the idea of partnering with European Based
> hosting companies for mirroring the docs?
>
>
--
Isaak Malik
Web Developer
mall bit of performance for a world of easier code
> development and maintenance. In nearly all cases it's a worthwhile trade.
>
> If you had 1000 or more divs you'd probably not want to use each() to bind
> the handlers, but for any reasonably small number of elements, the
fomance, you should google "event
> delegation".
>
> Cheers
>
> --
> Ariel Flesler
> http://flesler.blogspot.com/
>
> On 11 jun, 17:56, "Isaak Malik" <[EMAIL PROTECTED]> wrote:
> > Dear list,
> >
> > I'm not really into the c
orthwhile trade.
>
> If you had 1000 or more divs you'd probably not want to use each() to bind
> the handlers, but for any reasonably small number of elements, the
> performance hit is ok. Plus, binding speed has been improved in jQuery
> 1.2.6.
>
> -- Josh
>
>
&
functionality but
what are the differences in performance?
Kind regards,
--
Isaak Malik
Web Developer
77 matches
Mail list logo