The other day i was trying to understand how the supersized plugin works, and I was looking forward to using it.
I have downloaded the plugin from the following URL:
http://buildinternet.com/project/supersized/
I was debugging it using Firebug, but I don't understand how the image mark up is generated. I couldn't find its markup in any of the js, css, or html files...
Can someone please take a look at it, and offer me some direction?
The HTML that's placed into the DOM is generated in the javascript file/plugin, the code i've highlighted at https://github.com/buildinternet/supersized/blob/master/core/js/supersized.core.3.2.1.js#L67-L76
Related
I have a <ul></ul>class in which an element.style{} is getting applied from a .js file. Can I know how to know the exact .js file from which it is getting applied and the line of code? Below is the ss attached.
Check for some file name with flexslider or jquery.flexslider.js. If you have it then css is coming from their only search with .slides or with translate3d. If you don't have any then
the only possible way is with cleaver search. 1st search with ".slides" within your project. If you found any normal class not any library thats the place where it is coming. If you found any file like slider, carousel or owl or any other js file just delete the content of those file and refresh the page if the css is still their look for other file. If nothing happen look with parent class or ID.
If you use an IDE you can do a search for the styles applied in question in the javascript files, the IDE will highlight all the occurrences of the keywords that you use to search for. If the JavaScript file has been minified it can make it impossible because you won't have any idea what is what without a lot of analysis work. If you have the original source code just do a search it will allow you to do analysis really quick.
In Microsoft Edge if you click inspect element the CSS of element will appear on the right side of the screen. You can see which CSS style are being applied and use the checkmark interface to apply or remove the style. This will tell exactly where the CSS is coming from. If you want to know where the JavaScript is coming from I will use the search feature in my text editor to find the specific functions, or remove script tag temporary until I locate it.
How can i hide my page source from getting copied just like https://www.google.com
Please help me with any solution.
Is there any plugin need to add,please suggest me.
Hiding html sourcecode is not possible. The browser has to understand what you want to show and therefore needs to know your code.
Google does not encrypt the sourcecode. It is hard to read because a lot is going on but if you copy the sourcecode and paste it in notepad. You will have the same html markup.
Jslint says everything is fine, and I am able to add the external libs. Also code works fine in the IDE/browser, not in Jsfiddle
using Jsfiddle I am trying to debug Isotope toggle size and layout in JS fiddle, but I am unable to get the external libs to render.
Can you help, and correct me?
- if the issue is the order of libs, or what options I selected, is it the semi-colon infront of the JS, I thought this is normally good/safe coding in JS..
Here is the code in JsFiddle, it works in the IDE not JsFiddle
I am using the following font awesome, bootstrap, isotope, ba-bounce, jquery 1.11.2 (JSfiddle only shows 1.11.0)
I'm not sure where you were trying to load your resources from, but you need to provide a URL to the css or js file you want to include. These are usually easy to find hosted on a cdn. I have reconstructed your fiddle using cdn links to the external resources:
jsfiddle: http://jsfiddle.net/voveson/popzfey4/5/
I have a website an I am trying to replicate the 'sliding in' of text as shown here:
https://tictail.com/
When the user starts to scroll, the text on that page slides in from the left.
I've tried taking a look at the JavaScript files that are being loaded but no use.
My application is using AngularJS, so it would be nice to stick with this librabry, rather than having to us jQuery and jQuery ui.
Thanks
Ended up using this plugin.
Is really easy to import, just a CSS file and .js file.
http://jackonthe.net/css3animateit/
I need to insert a custom search box in the middle of joomla frontpage.
The searchbox would contain html, css and java script.I tried using mod html and moduleanywhere. still no luck.
I would appreciate if any pros out there could advise me on this.
This should do the trick for you - http://extensions.joomla.org/extensions/core-enhancements/coding-a-scripts-integration/custom-code-in-modules/16359
If that one doesn't work for you, there are a whole bunch of modules that do basically the same thing here - http://extensions.joomla.org/extensions/core-enhancements/coding-a-scripts-integration/custom-code-in-modules
As a last resort (actually this is the best way to do it) you can also create a custom module for your search box. It's really not that hard to do and it's much better to do it this way since you are not using an extension to add more code.
You can get info on module dev here - http://docs.joomla.org/Module_Development
And here is a quick video tutorial to get you started - http://www.youtube.com/watch?v=Qd93be8YRNY