I will get back here after experiments. And i really thank you for the effort. I will be back.
Type: Posts; User: jayapalchandran; Keyword(s):
I will get back here after experiments. And i really thank you for the effort. I will be back.
Thank you for your response.
I will expriment it but before that i wanted to ask this.
if the current execution is deep inside a nested function and during that time if i want just stop the...
and i am finally sticking to this.
http://vikku.info/codesnippets/javascript/forcing-javascript-to-abort-stop-javascript-execution-at-any-time/
Yes. after moving that line into the loop it worked.
I have been in other project and now back to this work so it is just now i was working with this to update like the below and it worked.
Thank...
Hi,
i would like to show you this mystic result
function delete()
{
$id = $this->input->post('id');
$this->deletecategory($id);
}
Now... its 12.15 (IST). i am implementing that code...
first i did not look into it properly and upon your reply i felt ah... thats the code... the recursion.
ok let me complete and post the...
oh, now i understood. I should have used it properly.
Thank you again for your reply.
I will implement it.
Sorry i was a little confused. :)
the concept is the same but i want a php code to do a recursive delete because i have only one table. which also refers indirectly to an images table. so instead of using two tables and query i need...
I have a table with Adjacency List model.
id cop title pid
10 1 four 9
9 1 three 8
8 1 two 7
7 1 one 0
11 1 five 10
12 1 six 11
13 1 seven 12
HI,
Thank you.
That is what i am going to do with my idea included.
I have created a table in which i have categories and products all in one table. i have id and pid column. Id is the main uniq id and pid is for the parent id. so for any first category the pid is 0...
Hi,
You guys would have seen the image cropping tool which has a selection option (marque tool) created in javascript.
http://marqueetool.net/examples/
Like this i want to get all elements under...
and then i wrote my own simple sleek baby scroller.
http://vikku.info/codetrash/Scroll_DIV,_HTML_elements_using_Javascript
this is just for an instance... i still have to upgrade it.
Hi,
here is one peculiar behavior of jquery callback
$('#mooka').fadeOut(100, function() { sendMail(); } );
and in the head section i have included error handler to display any error if...
Hi,
Beside using encodeURIComponent (which i got the answer from other forums) i can also use your method. thanks.
yeah, i understand... i am changing my sync wrappers to async.
Hi, I am back again with clarification in ajax post.
I am having a WYSIWYG (TinyMCE) editor for a description field.
I am posting it using AJAX.
Assume that the data is "lorum ispum & <p>sample...
Hi,
I use both sync and async modes.
Before starting any ajax request i display a processing(rotating) gif icon to show that the request is in progress.
when i get the response i will hide the...
http://www.dyn-web.com/code/scroll/documentation.php
Dw_scroll is a javascript snippet which has various functionality to scroll an element with showing the browsers default scroll bar. it has...
i have a div with fixed height.
i use dwscroll.
it has many include files.
when i use jquery animatins this dwscroll is not working but without the animations it works.
so i need a simple jquery...
async request. the familiar one and as i had stated in my first post i am comfortable with that... i just want to know behind the scene aspect.
Hi,
I have been using asynchronous requests for a long time. so the response was processed in a callback function. I thought of not using async so i made synchronous requests. The reason is that i...
Hi,
I call a javascript function b from another function a.
in the function b at certain conditions i want to stop the javascript execution and i have did it by throwing an exception by using Throw...
i had the same problem with the new release of dynamic drives drop down codes... the old ones were working and are working well. so i replaced my codes with the older ones which i had. so try finding...
Any object that displays some thing can be positioned anywhere on the screen below or above any object using the css properties position:absolute , zindex and providing the left and top values. user...