CodeIgniter Forums
Notezz - an AJAX jQuery / CodeIgniter demonstration (drag 'n drop etc.) - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21)
+--- Thread: Notezz - an AJAX jQuery / CodeIgniter demonstration (drag 'n drop etc.) (/showthread.php?tid=11331)

Pages: 1 2


Notezz - an AJAX jQuery / CodeIgniter demonstration (drag 'n drop etc.) - El Forum - 09-04-2008

[eluser]loathsome[/eluser]
Just created a nifty little script today, and decided to give it to you people. It might help beginners getting started for real using AJAX with CodeIgniter. It might also be of some kind of use to somebody! =)

This is also going to be used in the upcoming cms Monkeyprint (Google it) It might be a modified version of this, but this here is the final and only release of "notezz"

Any questions / comments, just ask :-)

Mirrors:

http://w15.easy-share.com/1701451477.html
http://rapidshare.com/files/142547670/Notezz.zip.html
http://massmirror.com/87d626de82158ad9f653b9eb6af4a96b.html


- loathsome


Notezz - an AJAX jQuery / CodeIgniter demonstration (drag 'n drop etc.) - El Forum - 09-04-2008

[eluser]Bramme[/eluser]
Is there a demo somewhere we can try out?


Notezz - an AJAX jQuery / CodeIgniter demonstration (drag 'n drop etc.) - El Forum - 09-04-2008

[eluser]loathsome[/eluser]
I'll upload one later today! Wink


Notezz - an AJAX jQuery / CodeIgniter demonstration (drag 'n drop etc.) - El Forum - 09-04-2008

[eluser]loathsome[/eluser]
All right, there's a somewhat limited version of the script at this page:
http://zorg.no-ip.org/notezz/index.php

Smile

- edit -

There's currently a few users messing around, so don't blame me if your notes get deleted / moved etc :-p


Notezz - an AJAX jQuery / CodeIgniter demonstration (drag 'n drop etc.) - El Forum - 09-05-2008

[eluser]Bramme[/eluser]
Feature request: add some additional Javascript that will change the z-index of the notes when you drag them around/click on them.

Because you gotta click one (to make it active, I presume) to be able to delete it... So why don't you add some z-index styling too? If that gets in, I'd actually use it I think! I'm thinking of making an ajax based cms for personal use with a section to keep notes in.


Notezz - an AJAX jQuery / CodeIgniter demonstration (drag 'n drop etc.) - El Forum - 09-26-2008

[eluser]clariz[/eluser]
I just have tried the demo. It really amazed me...
Never created like that before.:wow:

I think I'll try making like that.:cheese:
Thanks loathsome


Notezz - an AJAX jQuery / CodeIgniter demonstration (drag 'n drop etc.) - El Forum - 02-25-2009

[eluser]cray[/eluser]
its gone now? Sad


Notezz - an AJAX jQuery / CodeIgniter demonstration (drag 'n drop etc.) - El Forum - 02-27-2009

[eluser]Johonunu[/eluser]
It looks great !
I am new to using AJAX in CI, so this is verry helpfull !
And thanks for commenting the code ;-)


Notezz - an AJAX jQuery / CodeIgniter demonstration (drag 'n drop etc.) - El Forum - 03-03-2009

[eluser]Abdelali[/eluser]
[quote author="loathsome" date="1220546588"]Just created a nifty little script today, and decided to give it to you people. It might help beginners getting started for real using AJAX with CodeIgniter. It might also be of some kind of use to somebody! =)

This is also going to be used in the upcoming cms Monkeyprint (Google it) It might be a modified version of this, but this here is the final and only release of "notezz"

Any questions / comments, just ask :-)

Mirrors:

http://w15.easy-share.com/1701451477.html
http://rapidshare.com/files/142547670/Notezz.zip.html
http://massmirror.com/87d626de82158ad9f653b9eb6af4a96b.html


- loathsome[/quote]


Thank you, but i have a problem with AJAX, and all the JAVASCRIPT pages

when i open it from this link:
http://www.filmahosting.com/notes/index.php

it work, but if i try from this :
http://www.filmahosting.com/notes/index.php/main/index/

neither AJAX nor javascript are loaded !!!!!


help plz Smile


Notezz - an AJAX jQuery / CodeIgniter demonstration (drag 'n drop etc.) - El Forum - 03-03-2009

[eluser]pistolPete[/eluser]
You are using relative paths:
Code:
script type="text/javascript" src="java/jquery-1.2.6.min.js"

If you are on http://www.filmahosting.com/notes/index.php/main/index/, the file is requested from
http://www.filmahosting.com/notes/index.php/main/index/java/jquery-1.2.6.min.js.

You can avoid that using absolute paths:
Code:
script type="text/javascript" src="/notes/java/jquery-1.2.6.min.js"