Hi Alexandre,
I didn't really look too closely at your code but this might help
anyway. Try removing the brackets from the bit where you assign
initializeUploader to onIni so it looks like this:
$.fn.jqUploader.defaults = {
onIni: initializeUploader, /*remove brackets*/
// more options...
Hi, Josoroma :)
It's easy to do this by making an absolutely positioned div, which
will sit on top of your page content for a set amount of time. jQuery
has some methods to do it, maybe you will find this article helpful:
http://tinyurl.com/yu9g7a
Cherry
http://jquery.cherryaustin.com
On Feb 13
Is *fired* a valid property? If it is, how should you access it?
There's nothing about it in the api, but I've seen it in some plugins.
I'm hoping (desperately, by now) that it may hold the key to my
painful non-working function problem ...
Why on earth would you want to? Your visitors may think your page
broke their computer!
Eridius wrote:
> but the wheel scroll still scrolls the window, how to i disable it.
I'll try Jörn's. The only thing that gave me pause on that one was the
number of dependencies.
On Feb 13, 6:15 pm, Jack Killpatrick <[EMAIL PROTECTED]> wrote:
> I also decided to use that one (Jörn's) after evaluating 4 or 5 others.
> As you (timothy) noticed, many of the solutions borrowed from
FWIW, I pulled the necessary files down to my local system to give it a
try (running of a local web server) and noticed that it's not much
faster running locally than remotely. I suspect that's because of
client-side lookups on the fetched XML file? If so, any way to speed it
up? (I haven't r
I also decided to use that one (Jörn's) after evaluating 4 or 5 others.
As you (timothy) noticed, many of the solutions borrowed from each
other, but that one seemed to have the best aggregate of features from
them all and some of the others looked like they might have been
stagnating. It has a
>
>
> Also you can check jQuery's source around line 2200 for an interesting
> method that does not use eval:
It doesn't use eval explicitly, but the server response is eval'd implicitly
because it is requested with a script tag.
jQuery doesn't include JSON parsing separate from the getJSON, and if
you look at the source it's only a couple lines, and designed to work
with callbacks. It does not do hardcore JSON sanitizing so you do
still need a safe source as always.
For one JSON parsing method, see http://mg.to/topics/p
On Feb 13, 11:38 am, Feijó <[EMAIL PROTECTED]> wrote:
> I changed my own a few weeks ago, now I'm using Editpad++
> (http://sourceforge.net/projects/notepad-plus/)
> its freeware, nice resources, like macros, quick-text, highlighted source, ...
> and yours?-- Feijó
I like mooEdit for an edito
I have
$(window).bind('scroll', function(){return false;});
but the wheel scroll still scrolls the window, how to i disable it.
--
View this message in context:
http://www.nabble.com/how-to-disable-wheel-scroll--tp15471899s27240p15471899.html
Sent from the jQuery General Discussion mailing l
Webuilder
http://www.blumentals.net/webuilder/
Gle
On Wed, Feb 13, 2008 at 5:01 PM, polyrhythmic <[EMAIL PROTECTED]> wrote:
>
> Komodo Edit: Free, runs on Gecko engine (with integrated previews),
> Windows/Linux/OSX crossplatform, jQuery autocomplete & macros, syntax
> highlighting and autocompl
Komodo Edit: Free, runs on Gecko engine (with integrated previews),
Windows/Linux/OSX crossplatform, jQuery autocomplete & macros, syntax
highlighting and autocomplete across a multitude of languages, FTP/
remote file support, code search and collapsible code tree... just for
starters. There's ev
textpad
textpad.com
Feijó escribió:
I changed my own a few weeks ago, now I'm using Editpad++
(http://sourceforge.net/projects/notepad-plus/)
its freeware, nice resources, like macros, quick-text, highlighted
source, ...
and yours?
--
Feijó
hi!
while working on a plugin and following Mike Alsup's plugin pattern (
http://www.learningjquery.com/2007/10/a-plugin-development-pattern),
i'm stuck trying to reference an external function inside the plugin:
i have an externally accessible configuration object to store options
's default v
nice one!! I'll give it a try for few days
timothytoe escreveu:
I tried a bunch and ended up with PSPad.
Hi
Does anyone know a plugin that would let users 'throw items around' in
a designated area.
basically something like this
http://www.etsy.com/showcase.php once you click on an item, it pops up
and then u can draw and throw it.
i know there are bunch of drag and drop plugins around but anyone
thx karl, im still learning jquery is a great thing, sometimes is miss
the logic about it.
and its work perfect, now the cpu is 5 to 11%, and i notice i must
define the function showtime inside the $(function(){} because i lose
the vars in other way, but how i can make it work from outside?
It's because jQuery has been changed to no longer use "eval" (partly
to be compatible with Adobe AIR).
Karl Rudd
On Feb 14, 2008 10:25 AM, Ariel Flesler <[EMAIL PROTECTED]> wrote:
>
> Yeah.. same happened to me with map.. I had a ...
> $.map(Array(some_number),'new Image')... and it broke down s
Yeah.. same happened to me with map.. I had a ...
$.map(Array(some_number),'new Image')... and it broke down since 1.2.2
but I suppose that wasn't specified in the documentation so no one
assured it'd stay.. or was it ?
Ariel Flesler
On 13 feb, 17:18, jody <[EMAIL PROTECTED]> wrote:
> Using the
Have been using the HTML-Kit Tools (the purchased version) of
http://www.htmlkit.com/ since its release (years) and have found it
great. Good for syntax highlighting, great plugins, and the purchased
version has an easy to use Project Interface to keep local and live
files organised.
The document.getElementById().select() method doesn't work in all
browsers so there needs to be some sort of "patched" function to get
the selection. See the linked blog entry for details (
http://blog.0xab.cd/jquery-plugin---fieldselection ).
The plugin is actually quite small and succinct, so I
Part of the problem may be that the elements are being searched every
time the function is called.
$('.year').text(anio);
$('.day').text(dia);
$('.month').text(mes);
$('.week').text(week);
$('span.h').text(String(hours));
$('span.minute').text(String(minutes));
$('span.seconds
This isn't specific to jQuery. One way...
var x = '{a:123,b:456}'; // json
eval('var z='+x);
z is now an object. z.a = 123, etc.
-j
On Feb 13, 3:47 pm, wolf <[EMAIL PROTECTED]> wrote:
> hi,
>
> what is the correct way in jQuery to decode = deserialize a JSON
> string? jQuery itself can obviou
Dave... here is a packed version of UITabs that works
http://www.morningz.com/linked/Coding/ui.tabs.pack.js.txt
"Although I'm not getting JS errors any
more on this page...
http://elearningrd.info/tabs/docbuilder/test.php";
Using Firebug, that packed version is still throwing an error (there
you can't return a value from an anonymous function!
think about it: you call $.get() and pass in an anon function as a
parameter.
$.get() returns basically immediately, and then sometime later (much
later) your anon function will be called.
Where does the return value of anon go? Nowhere.
Th
Rather than call the function recursively, you might want to use setInterval
rather than setTimeout, which is what I think you are trying to
achieve...that is, run the function once per second.
I think if you run the function recursively without an "exit strategy" you
get a circular behavior
If by "grid" you mean something like a table, then the tablesorter
plugin does exactly what you're looking for.
Shawn
Lawrence Oluyede wrote:
At work we're evaluating some grid controls with client side sorting
capabilities.
We tried Ext.Grid but it's a little too invasive (it also modifies
I am just curious, as i am trying to learn when jQuery might be
overkill..but why wouldn't that simple
document.getElementById().select() not be a desirable answer?
like i don't see what is, or what can be, gained by jQuery-ifying it
I'm using the pagination plugin at the top and bottom of a list.
Works great, except that the two instances are independent. Clicking
on page "3" in the one pagination instance will not change the other.
I've thought of various solutions/workarounds, but they all involve
getting access to the pa
um, use a variable?
var x = true;
$("#container").click(function() {
if (x) {
$("#container").animate({"marginTop": "-=237px"}, "slow");
} else {
$("#container").animate({"marginTop": "400px"}, "slow");
}
x = !x;
});
On Feb 13, 3:05 pm, somedude <
well - we figured out a work for this...
safari seems to respond when the css come before the js - so switch
the order of calls and safari is happy (note we are loading
dynamically).
On Feb 13, 9:42 am, heidik <[EMAIL PROTECTED]> wrote:
> Hello All:
> We're getting ready to launch an awesome lib
one way (but probably not the best)
var myobj = eval(myjsonString);
I wouldn't trust this though - specially if the json string is from an
untrusted source
Shawn
wolf wrote:
hi,
what is the correct way in jQuery to decode = deserialize a JSON
string? jQuery itself can obviously do it
Where's the "show_clock()" function? Or was that a typo?
Otherwise, I don't see anything glaringly wrong with the code (just a
quick glance though...)
Shawn
Sebastián V. Würtz wrote:
can this code kill a cpu?
$(function() {
show_clock();
});
function showtime() {
var meses = new
can this code kill a cpu?
$(function() {
show_clock();
});
function showtime() {
var meses = new
Array("ENE","FEB","MAR","ABR","MAY","JUN","JUL","AGO","SEP","OCT","NOV","DIC");
var dias = new
Array("DOMINGO","LUNES","MARTES","MIERCOLES","JUEVES","VIERNES","SABADO","DOMINGO");
v
Nice find. I'll bet that does it! :o)
On Feb 13, 2008 10:36 AM, tlphipps <[EMAIL PROTECTED]> wrote:
>
> I think I found the setting. In the fckconfig.js file there are two
> lines:
> FCKConfig.EnterMode = 'p' ; // p | div | br
> FCKConfig.ShiftEnterMode = 'br' ; // p |
Zend Studio, before that TextMate
On Feb 13, 2008 3:15 PM, Kyle Browning <[EMAIL PROTECTED]> wrote:
>
> Zend Studio.
>
>
> On Feb 13, 2008, at 12:15 PM, Alexandre Plennevaux wrote:
>
> > aptana studio
> >
> > On Feb 13, 2008 8:49 PM, Mika Tuupola <[EMAIL PROTECTED]> wrote:
> >>
> >>
> >> On Feb 1
I have a plugin that creates a click event on $(document). I want to be able
to remove just that event and if something else has added an click event to
the $(document) I still want it. $(document).unbind('click') will remove
all event, even ones i did not create. is there a way to do this?
--
rickcr schrieb:
My name fields in my form are backed by a String array in a HashMap and I
need them in the following format:
questionAnswersMap(Q8).answers[0]
The problem is when I try to assign a validation rule to this name, I get an
error in the javascript parsing:
'missing : after propert
Diego A. schrieb:
I use:
http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/
I made this decision a few months ago, but I remember going through 4
or 5 options (I even considered writing my own), but in the end I
chose the option that I thought was most likely to see future
develop
sozzi schrieb:
Thank you for the response,
I'll try to do that. I just wanted to make sure that you hadn't
allready integrated something like the active:"class" you have in the
accordion.
I'll let you know how it turns out. Thanks
Sooner or later I'll add a feature that'll work like the act
That's fine, I went ahead and downloaded the files used here,
http://docs.jquery.com/UI/Tabs#Example, and I don't get any more weird
JS errors.
But I have another question. Although I'm not getting JS errors any
more on this page...
http://elearningrd.info/tabs/docbuilder/test.php
the LIs stil
IntelliJ IDEA and gvim. I use gvim literally all the time. I have an icon on
my dock for "Open with gvim" that I can just drop files on. Very handy.
The nice thing about gvim (or vi in general I guess), is that while there
are a lot of commands, way more than anyone would be expected to learn all
Dave, that's weird, there's a syntax error in the packed script in the
second example, but the files are the same. I checked the response
headers and they're different:
DateWed, 13 Feb 2008 21:23:34 GMT
Server Apache
Connection Keep-Alive, Keep-Alive
Keep-Alive timeout=15, max=98
E
I love the site. It's awesome.
Is it possible to update the existing http://www.jquery.com/api to use it?
Glen
On Wed, Feb 13, 2008 at 11:21 AM, Alexandre Plennevaux <[EMAIL PROTECTED]>
wrote:
>
> better the "*" suggestion. poor Remy's bandwidth otherwise !
>
> On Feb 13, 2008 3:22 PM, Joel Ste
Vim ...for everything
http://www.vim.org/index.php
--
Bohdan Ganicky
On Feb 13, 5:38 pm, Feijó <[EMAIL PROTECTED]> wrote:
> I changed my own a few weeks ago, now I'm using Editpad++
> (http://sourceforge.net/projects/notepad-plus/)
> its freeware, nice resources, like macros, quick-text, high
Zend Studio.
On Feb 13, 2008, at 12:15 PM, Alexandre Plennevaux wrote:
> aptana studio
>
> On Feb 13, 2008 8:49 PM, Mika Tuupola <[EMAIL PROTECTED]> wrote:
>>
>>
>> On Feb 13, 2008, at 6:38 PM, Feijó wrote:
>>
>>> I changed my own a few weeks ago, now I'm using Editpad++
>>> (http://sourceforge
Ok sorry about the title, don't know what to say.
I have a site for a client, and when you click a certain div it
animates with a marginTop -=300px like effect so the div is just
visible sliding in behind another div.
Now, if the user clicks the div again it will do the same and go up by
300px.
Using the following method no longer works in version 1.2.3 (stealing
examples from documentation):
arr = jQuery.grep(arr, "a != 9");
Debugging was showing an undefined function using the above method.
Rolling back to 1.2.2, all works fine with the above. Anticipating
using the new ui.jQuery pac
At work we're evaluating some grid controls with client side sorting
capabilities.
We tried Ext.Grid but it's a little too invasive (it also modifies the
HTML content of the page outside the div where it belongs), it's
*really* heavy and have some issues with our
CSS files (its CSS classes are not
I'm a .NET programmer, so it's Visual Studio 2008 for me and
with this week's hotfix, using jQuery is a breeze inside the enviroment
What is the function "test()" doing?
And a better way, well my opinion anyways, would be to use two
buttons, one pure HTML calling the block code, and one server side one
with "display: none"...
have the user click the HTML button/image, call your block code, and
if all is well, trigger the hidd
Is there a better way to link animations in jQuery. Maybe I am going
about this the wrong way.
On Jan 18, 2:19 pm, WolfZombie <[EMAIL PROTECTED]> wrote:
> I'm not sure if my last reply went through.
> Here is a link to the
> file:http://www.cheesymovienight.com/test/slideshow/slide.php
>
> Clic
I would like to count the number of checkboxes with "checked"
attribute equals to true inside the page's "category section" in which
the user clicks.
I use the variable "checkedInputCheckboxCount" to store this
information but it seems that I get results multiplied by 2.
What did I do wrong? Any
hi,
what is the correct way in jQuery to decode = deserialize a JSON
string? jQuery itself can obviously do it as it can formulate and read
JSON via Ajax. But i seemingly can't find a callable in jQuery that
allows me to decode JSON without issuing an HTTP request. That is
strange to me.
Can you
Hello,
I am trying to use the show/hide jquery function to show and hide book
descriptions by clicking on the name of the book. It seems that the
script works OK in firefox but not at all in IE. (In IE the
descriptions are hidden and won't show)
For example,
http://squarehedge.com/bastianbooks/
Hello,
I am trying to use the show/hide jquery function to show and hide book
descriptions by clicking on the name of the book. It seems that the
script works OK in firefox but not at all in IE. (In IE the
descriptions are hidden and won't show)
For example,
http://squarehedge.com/bastianbooks/
I'm using (and have been for quite a few years) TextPad.
http://www.textpad.com/
Unfortunately, this method doesn't validate. I'm getting an error for
every appended image in the head of the page. Is there a way to
use .append( ') that validates?
-Ange
On Feb 4, 4:42 am, Pickledegg <[EMAIL PROTECTED]> wrote:
> Thats clever, thanks Ange. So on mouse over the image tags 02>07
My name fields in my form are backed by a String array in a HashMap and I
need them in the following format:
questionAnswersMap(Q8).answers[0]
The problem is when I try to assign a validation rule to this name, I get an
error in the javascript parsing:
'missing : after property id
[Break on th
Maybe a newbie question.
When i use Plesk 8 there is a loading message that display loading
page contents, and dissapear until all the page is loaded. There exist
some jquery plugin or script for this kind of functionality? to
prevent users to use the page options untill all the scripts, images
a
You'd be better off making a new "button" and copying the attributes
across. Certain browsers *cough* IE 6 *cough* don't allow you to
change the type of a "input" once it's created.
Karl Rudd
On Feb 13, 2008 10:23 PM, wwwiori <[EMAIL PROTECTED]> wrote:
>
> Dear Team,
> I have a question that how
Try this plugin:
http://laboratorium.0xab.cd/jquery/fieldselection/0.2.3-test/test.html
Karl Rudd
On Feb 13, 2008 8:48 PM, poncz <[EMAIL PROTECTED]> wrote:
>
> How do I mark the text in a textArea as selected?
> In DOM it would be document.getElementById("textAreaElm").select();
> But is do
I just downloaded the jquery tabs zip file, unzipped it and got the
demo working
http://elearningrd.info/tabs/scripts/tabs/
but when I try and build my own page, I get JS errors:
http://elearningrd.info/tabs/docbuilder/build_doc2.php
I'm including the same JS files (so I think) as the demo pag
hi!
while working on a plugin and following Mike Alsup's plugin pattern (
http://www.learningjquery.com/2007/10/a-plugin-development-pattern),
i'm stuck trying to reference an external function inside the plugin:
i have an externally accessible configuration object to store options
's default v
I have used a js script that did this same thing(might have been the same
script) and instead of fixed IE 6 it would crash IE 6 randomly. I also
think it is over kill to add 23KB to fix a small issue or make this a
requirement to use my plugin.
Cloudream wrote:
>
>
> try DEAN's IE7 js lib.
>
try DEAN's IE7 js lib.
http://dean.edwards.name/IE7/
On Feb 14, 4:08 am, Eridius <[EMAIL PROTECTED]> wrote:
> I want to create the same effect the thickbox/thickbox reloaded does so if
> someone tries to scroll down manually with the mouse and browser side scroll
> bar my content remain in the sa
There are four ways to do this.
One is a css property called { position:fixed }, however that only works on
a CSS2 browser such as Firefox, Opera, Safari and IE7. It does not work on
IE6 or below.
The second thing would be to attach a function to the window.onscroll event.
$(window).bind('scro
aptana studio
On Feb 13, 2008 8:49 PM, Mika Tuupola <[EMAIL PROTECTED]> wrote:
>
>
> On Feb 13, 2008, at 6:38 PM, Feijó wrote:
>
> > I changed my own a few weeks ago, now I'm using Editpad++
> > (http://sourceforge.net/projects/notepad-plus/
> > )
> > its freeware, nice resources, like macros, qu
I want to create the same effect the thickbox/thickbox reloaded does so if
someone tries to scroll down manually with the mouse and browser side scroll
bar my content remain in the same place not matter where they scroll, how is
this possible? I search the thickbox reloaded code and can't seem t
On Feb 13, 2008, at 6:38 PM, Feijó wrote:
I changed my own a few weeks ago, now I'm using Editpad++ (http://sourceforge.net/projects/notepad-plus/
)
its freeware, nice resources, like macros, quick-text, highlighted
source, ..
Textmate with jQuery bundle, of course :)
http://macromates.co
yea, you might need to have it nested.
ul
li - div1 div2 div3 div4 div5 div6
/ul
On Feb 6, 7:11 pm, RyanAZ <[EMAIL PROTECTED]> wrote:
> does anybody know of a method that allows for two rows of three items
> to show up with thejcarouselplugin?
better the "*" suggestion. poor Remy's bandwidth otherwise !
On Feb 13, 2008 3:22 PM, Joel Stein <[EMAIL PROTECTED]> wrote:
>
> I think the only thing I'd like to see on this is a way to see all
> method. Perhaps by default, everything shows, and when searching, it
> refines the search? Or mayb
Hello,
I'm trying to make a frontpage like iGoogle, it works very nicely with
sortable but I cant get to keep the changes users made. each loading
the changes disapear
I tried two options:
* Cookie with the plugin from
www.stilbuero.de/2006/09/17/cookie-plugin-for-jquery/
* Serialize which gi
Just started getting this issue with the Forms plugin!
- jake
On Feb 9, 2008 5:07 PM, [EMAIL PROTECTED]
<[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> I just downloaded the latest version of the ajax file upload plugin
> (http://www.phpletter.com/Demo/AjaxFileUpload-Demo/). I have created
> a test page
I use:
http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/
I made this decision a few months ago, but I remember going through 4
or 5 options (I even considered writing my own), but in the end I
chose the option that I thought was most likely to see future
development and support.
O
One thing I've been wondering about animate. Can you create a function
for the path that something moves along?
On Feb 13, 10:44 am, Karl Swedberg <[EMAIL PROTECTED]> wrote:
> Hi everyone,
>
> I don't usually announce to this list when I post something on
> learningjquery.com, but I figured it mi
I searched google for "jquery autocompletion" and was overwhelmed by
the choices. Looks like people have been borrowing heavily back and
forth to get the best solution.
Has anyone gone through the choices recently and selected one? If so,
which did you choose and why?
I'd like to use it for both
Hi everyone,
I don't usually announce to this list when I post something on
learningjquery.com, but I figured it might be worth doing so this
time, because the entry grew out of a couple questions from the list.
It shows how to extend jQuery's default set of effects/animations in a
simpl
I tried a bunch and ended up with PSPad.
Yep...
Free is nice, but just because it's free doesn't make it the best.
Anyway...to each his own. I wish you the best of luck with NotePad++
_
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Feijó
Sent: Wednesday, February 13, 2008 12:21 PM
To: jquery-en@goog
I use vim, once you get used to most commands you realize how powerful
it is. I've been using it for more than 3 years now and it's all I
need for my PHP, jQuery, HTML, CSS, Python and even for writing blog
posts.
They improved a little the interface, has been some time since the last
time I saw it
But editpad++ is free!! editplus has pay resources :)
baita abraço
Feijó
Andy Matthews escreveu:
Not sure what you mean...I just
looked at a screenshot of Notepad++ and it looks almost the sa
Thank you for the response,
I'll try to do that. I just wanted to make sure that you hadn't
allready integrated something like the active:"class" you have in the
accordion.
I'll let you know how it turns out. Thanks
Angelo
On Feb 13, 9:50 am, Jörn Zaefferer <[EMAIL PROTECTED]> wrote:
> sozzi s
Not sure what you mean...I just looked at a screenshot of Notepad++ and it
looks almost the same as Editplus.
Notepad++
http://sourceforge.net/project/screenshots.php?group_id=95717
Editplus
http://www.editplus.com/ss/editplus.gif
_
From: jquery-en@googlegroups.com [mailto:[EMAIL PR
Rufio schrieb:
Hi Jorn
I wanted to know why we would use class names such as:
class="{required:true,email:true}"
when the following will work perfectly and allows for easier class
manipulation (ie when making certain fields optional depending on
which submit button you press):
class="require
sozzi schrieb:
I love the plugin and it does its job perfectly. Especially the
persist: "location" trigger makes my life so much easier. But I don't
quite know how to open a branch in reverse.
I.e. I use it for navigation and it works all the way down to the
category level using persist:location
Josoroma schrieb:
If i have a custom css toolbar in a form called "confirm" that doesn't
use a normal submit button like:
Instead i need to use the following css-link-button to check the
validate before submit:
How can i do the validate and submit?
Try to submit the form via jQuery, that
Hey Pete,
It looks like you're not using the latest release. I can tell because the
bgiFrame option does not appear in the clockpick.js source code in Firebug
when I view your page. This option was added in the latest release.
That said, it should still work...not sure what is going on the
Hi Ron,
you should be able to do this with the .wrapAll() method:
http://docs.jquery.com/Manipulation/wrapAll
Something like this, maybe:
$('input:radio').each(function() {
var $next = $(this).next('label');
var $both = $(this).add($next);
if ($both.length == 2) {
$both.wrapAll('');
The loadXMLarray() is trying to return objectArray before the callback
in $.get() has finished. You probably need to use a callback for
loadXMLarray as well.
Also, you are defining objectArray as a global variable since it
doesn't have "var" in front of it. That is probably a bad idea.
I dont like the editplus interface, very ancient :)
But its a good app too!!
Feijó
Andy Matthews escreveu:
Editplus
www.editplus.com
Best one I've found in 6+ years
of looking, been using it for about the same amount of time.
From:
jquery-en@googlegroups.com [
lol
yes, notepad++
Feijó
spinnach escreveu:
..you mean notepad++ :)..
i'm using it also, great little app..
dennis.
Feijó wrote:
I changed my own a few weeks ago, now I'm
using Editpad++ (http://sourceforge.net/projects/notepad-plus/)
its freeware, nice resourc
no problemo :)
On Feb 13, 2008 4:55 PM, pere roca <[EMAIL PROTECTED]> wrote:
>
>
>
> Well, it was just a simple z-index issue
> (http://dev.iceburg.net/jquery/jqModal/toTop.html)
>
> thanks again, Alexandre
> Pere
>
>
>
> pere roca wrote:
> >
> > dear jquery list,
> >
> > here come again
Notepad++;
:)
On 13 Feb, 06:41, spaceage <[EMAIL PROTECTED]> wrote:
> Is this a reasonable undertaking using jQuery, or is there another
> better way (or plug in) to do this?
jQuery is perfect for this kind of things :)
just give the div a overflow:hidden style, and the li's a
position:relative, and a very hig
Editplus
www.editplus.com
Best one I've found in 6+ years of looking, been using it for about the same
amount of time.
_
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Feijó
Sent: Wednesday, February 13, 2008 10:38 AM
To: jquery-en@googlegroups.com
Subject: [j
Is this only a problem in IE?
where "clk_search" is the method that submit the form.
> With this code, my loading message box appears but no submit has made.
> What's wrong?
>
> thanks
> alberto
>
>
..you mean notepad++ :)..
i'm using it also, great little app..
dennis.
Feijó wrote:
I changed my own a few weeks ago, now I'm using Editpad++
(http://sourceforge.net/projects/notepad-plus/)
its freeware, nice resources, like macros, quick-text, highlighted
source, ...
and yours?
--
Feij
I changed my own a few weeks ago, now I'm using Editpad++
(http://sourceforge.net/projects/notepad-plus/)
its freeware, nice resources, like macros, quick-text, highlighted
source, ...
and yours?
--
Feijó
1 - 100 of 159 matches
Mail list logo