The first line of your js looks like that: jQuery(document).ready(function($) { I do not know if that provokes an error, but the "$" makes no sense at this place.
@R_J jQuery(document).ready(function($) { and $( document ).ready(function() { are the same.
Only one difference: Adding the jQuery can help prevent conflicts with other JS frameworks.
Wow I didn't even notice this thread until now. Thank you to everyone in this thread who have been working on this. Within the next couple of days I'll update the original plugin with this feature and an option to toggle it on or off.
Comments
What is exactly the problem? You do not see the popup? Or you can not close the popup?
The first line of your js looks like that:
jQuery(document).ready(function($) {
I do not know if that provokes an error, but the "$" makes no sense at this place.Shouldn't it be
$( document ).ready(function() {
?@R_J
jQuery(document).ready(function($) {
and$( document ).ready(function() {
are the same.Only one difference: Adding the jQuery can help prevent conflicts with other JS frameworks.
Source: http://www.sitepoint.com/types-document-ready/
But the error is not anymore because i loaded the js in the public function Base_Render_Before
Hi, I cannot close popup got this hash on my main domain instead of: mydomain.com/#
All done thanks guys awesome support
I almost forgot to say BIG thanks to the orginal author of this plugin.
Thanks HAZULU for a really useful plugin.
Wow I didn't even notice this thread until now. Thank you to everyone in this thread who have been working on this. Within the next couple of days I'll update the original plugin with this feature and an option to toggle it on or off.