Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
I'm working with joomla.
I have used ajax to display some a section on a page. In that ajax loaded section, I kept a jce popup link like
<a href="some link" class="jcepopup noicon">
When I click on this link, JCE popup is not working.
Is there any script to add with in this case ?
The solution is that, we need to add the following script in ajax loaded content.
<script>window.jcepopup.create();</script>
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I saw a slider in a website and I want to get the CSS and javascript of that element so I can use in my website. How can I accomplish that?
To read and use code from a website, you use an "Inspect Editor" which is integrated in the browser. An example of Firefox Inspect Editor:
https://developer.mozilla.org/en-US/docs/Tools/Page_Inspector
There you can call up the HTML Editor and the Style Editor.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
I have a WordPress page "site A" that contains exit intent script and other active plugins, but I wish to have the same functions working on another site(third party-"site B") which doesn't provide that function.
I'm given a field where I can insert code on "site B" and wish to display my WordPress page as transparent layer or any other method that enables the WordPress plugin to work in the background.
Is it possible?
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
I have two (or more) links.
First is link (example) : http://website.com
Second is code with: <div> </div>
How can I make them both open when I click on a single link?
For example, a link entitled "click here" which, when clicked, will open two different blank windows.
This is only done with Javascript. Try this:
Click Me
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
I want to play an animation when you are not redirected from my page (when you have not clicked a link on My page and got redirected to another page on My page) much like: animade.tv
It there any way to detect that with javascript? If not, can you do it with php?
You can use both js or php
js:
document.referrer
php:
$_SERVER['HTTP_REFERER']
sometimes it could be empty, you can just verify that is different from your domain
use document.referrer to test the url
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
Friends
I am working on the Dynamic Web project.
I am creating JSP & Servalet Pages in my project
I am load a gif image at the time of the page submit
at that time i need to disable whole jsp page
Please anyone has an idea so please suggest me.
Try BlockUI plugin for jQuery.